diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/struct-semi-3.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/struct-semi-3.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/struct-semi-3.c b/gcc/testsuite/gcc.dg/struct-semi-3.c new file mode 100644 index 000000000..da0f237a6 --- /dev/null +++ b/gcc/testsuite/gcc.dg/struct-semi-3.c @@ -0,0 +1,20 @@ +/* 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" } */ |