scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

0030-krtypes.c (160B)


      1 /*
      2 PATTERN:
      3 0030-krtypes.c:15: error: too many arguments in function call
      4 .
      5 */
      6 
      7 static void foo()
      8 {
      9 }
     10 
     11 void bar();
     12 
     13 int main()
     14 {
     15 	foo(0);
     16 	bar(0);
     17 	return 0;
     18 }