blob: 25a33c78a8d60c71db35f32aa1259fbc4d7d6d57 [file] [log] [blame]
/* 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 "error: extra semicolon in struct or union specified" } */
/* { dg-error "error: struct has no members" "empty" { target *-*-* } 7 } */
struct s1 {
int a;
; /* { dg-error "error: extra semicolon in struct or union specified" } */
int b;
};
struct s2 {
; /* { dg-error "error: extra semicolon in struct or union specified" } */
int c
}; /* { dg-error "error: no semicolon at end of struct or union" } */
struct s3 {
int d
}; /* { dg-error "error: no semicolon at end of struct or union" } */