aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/struct-semi-3.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/struct-semi-3.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/struct-semi-3.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/struct-semi-3.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/struct-semi-3.c
deleted file mode 100644
index da0f237a6..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/struct-semi-3.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/* Test diagnostics for missing and extra semicolons in structures.
- Test with -pedantic-errors. */
-/* Origin: Joseph Myers <joseph@codesourcery.com> */
-/* { dg-do compile } */
-/* { dg-options "-pedantic-errors" } */
-
-struct s0 { ; }; /* { dg-error "extra semicolon in struct or union specified" } */
-/* { dg-error "struct has no members" "empty" { target *-*-* } 7 } */
-struct s1 {
- int a;
- ; /* { dg-error "extra semicolon in struct or union specified" } */
- int b;
-};
-struct s2 {
- ; /* { dg-error "extra semicolon in struct or union specified" } */
- int c
-}; /* { dg-error "no semicolon at end of struct or union" } */
-struct s3 {
- int d
-}; /* { dg-error "no semicolon at end of struct or union" } */