Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / struct-semi-3.c
blob25a33c78a8d60c71db35f32aa1259fbc4d7d6d57
1 /* Test diagnostics for missing and extra semicolons in structures.
2 Test with -pedantic-errors. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-pedantic-errors" } */
7 struct s0 { ; }; /* { dg-error "error: extra semicolon in struct or union specified" } */
8 /* { dg-error "error: struct has no members" "empty" { target *-*-* } 7 } */
9 struct s1 {
10 int a;
11 ; /* { dg-error "error: extra semicolon in struct or union specified" } */
12 int b;
14 struct s2 {
15 ; /* { dg-error "error: extra semicolon in struct or union specified" } */
16 int c
17 }; /* { dg-error "error: no semicolon at end of struct or union" } */
18 struct s3 {
19 int d
20 }; /* { dg-error "error: no semicolon at end of struct or union" } */