Home
       0082-bug.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR 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