aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp/vararg4.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/cpp/vararg4.c')
-rw-r--r--gcc/testsuite/gcc.dg/cpp/vararg4.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc/testsuite/gcc.dg/cpp/vararg4.c b/gcc/testsuite/gcc.dg/cpp/vararg4.c
deleted file mode 100644
index 460cebf2833..00000000000
--- a/gcc/testsuite/gcc.dg/cpp/vararg4.c
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Copyright (C) 2002 Free Software Foundation, Inc. */
-
-/* { dg-do preprocess } */
-/* { dg-options -std=gnu99 } */
-
-/* Source: Neil Booth, 6 Aug 2002.
-
- Tests that we DTRT with varargs commas. */
-
-#define g(a, ...) a , ## __VA_ARGS__
-
-/* The comma from g's expansion should be retained. */
-#if g (2, ) 3 /* { dg-bogus "missing binary operator" } */
-#endif