diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/cpp/trad/macro.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/cpp/trad/macro.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/cpp/trad/macro.c b/gcc/testsuite/gcc.dg/cpp/trad/macro.c new file mode 100644 index 0000000..164b4ec --- /dev/null +++ b/gcc/testsuite/gcc.dg/cpp/trad/macro.c @@ -0,0 +1,11 @@ +/* Test that varargs are rejected, and that we don't complain about + macro args in skipped blocks. */ + +/* { dg-do preprocess } */ + +#define f(x) +#define g(x, y...) /* { dg-error "macro parameter list" } */ + +#if 0 +#define f(a,b) /* { dg-bogus "passed 2 arguments" } */ +#endif |