(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
cpp/
trad/
macro.c
       1  /* Test that varargs are rejected, and that we don't complain about
       2     macro args in skipped blocks.  */
       3  
       4  /* { dg-do preprocess } */
       5  
       6  #define f(x) 
       7  #define g(x, y...)		/* { dg-error "-:macro parameter list" } */
       8  
       9  #if 0
      10  #define f(a,b)			/* { dg-bogus "passed 2 arguments" } */
      11  #endif