scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | 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 }