scc

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

0014-macro.c (109B)


      1 /*
      2 PATTERN:
      3 0014-macro.c:9: error: macro "X" received 1 arguments, but it takes 0
      4 .
      5 */
      6 
      7 #define X() 0
      8 
      9 X(A)
     10