1 /* Test diagnostics for missing and extra semicolons in structures.
2 Test with -pedantic. */
3 /* Origin: Joseph Myers <joseph@codesourcery.com> */
4 /* { dg-do compile } */
5 /* { dg-options "-pedantic" } */
7 struct s0
{ ; }; /* { dg-warning "extra semicolon in struct or union specified" } */
8 /* { dg-warning "struct has no members" "empty" { target *-*-* } 7 } */
11 ; /* { dg-warning "extra semicolon in struct or union specified" } */
15 ; /* { dg-warning "extra semicolon in struct or union specified" } */
17 }; /* { dg-warning "no semicolon at end of struct or union" } */
20 }; /* { dg-warning "no semicolon at end of struct or union" } */