scc

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

0102-bug.c (131B)


      1 // This wouldn't compile
      2 
      3 typedef struct  { } Vec;
      4 
      5 static void
      6 vecresize(Vec *v, int cap)
      7 {
      8 	return;
      9 }
     10 
     11 int main()
     12 {
     13 	return 0;
     14 }