2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / cpp / vararg4.c
blob460cebf28331b010c6a327857f5bd9c528f3543c
1 /* Copyright (C) 2002 Free Software Foundation, Inc. */
3 /* { dg-do preprocess } */
4 /* { dg-options -std=gnu99 } */
6 /* Source: Neil Booth, 6 Aug 2002.
8 Tests that we DTRT with varargs commas. */
10 #define g(a, ...) a , ## __VA_ARGS__
12 /* The comma from g's expansion should be retained. */
13 #if g (2, ) 3 /* { dg-bogus "missing binary operator" } */
14 #endif