aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/990119-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/990119-1.c')
-rw-r--r--gcc/testsuite/gcc.dg/990119-1.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/testsuite/gcc.dg/990119-1.c b/gcc/testsuite/gcc.dg/990119-1.c
deleted file mode 100644
index 7e33518a35c..00000000000
--- a/gcc/testsuite/gcc.dg/990119-1.c
+++ /dev/null
@@ -1,15 +0,0 @@
-/* This checks for two things:
- - an obscure corner case in the standard rules for __LINE__
- - regression of an associated bug in cpplib where the semicolon got lost */
-/* { dg-do run } */
-
-int i = __LINE__\
-;
-
-int main (void) /* { dg-bogus "parse error" "semicolon eaten" } */
-{
- if (i != 6)
- abort();
- else
- return 0;
-}