scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

0082-bug.c (116B)


      1 #define x(y) ((y) + 1)
      2 
      3 int
      4 main()
      5 {
      6 	int x;
      7 	int y;
      8 	
      9 	y = 0;
     10 	x = x(y);
     11 	
     12 	if(x != 1)
     13 		return 1;
     14 	
     15 	return 0;
     16 }
     17