scc

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

0013-macro.c (114B)


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