scc

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

0173-macro.c (104B)


      1 #define x f
      2 #define y() f
      3 
      4 typedef struct { int f; } S;
      5 
      6 int
      7 main()
      8 {
      9 	S s;
     10 
     11 	s.x = 0;
     12 	return s.y();
     13 }