scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | 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 }