0036-func.c - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
0036-func.c (245B)
---
1 /*
2 PATTERN:
3 0036-func.c:8: error: __func__ is a reserved variable name
4 0036-func.c:10: error: __func__ is a reserved variable name
5 0036-func.c:13: warning: '__func__' defined but not used
6 .
7 */
8 int __func__;
9
10 int foo(int __func__)
11 {
12 return 0;
13 }