Mercurial > hg > CbC > CbC_gcc
comparison gcc/testsuite/gcc.dg/struct-semi-2.c @ 111:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
68:561a7518be6b | 111:04ced10e8804 |
---|---|
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" } */ | |
6 | |
7 struct s0 { ; }; /* { dg-warning "extra semicolon in struct or union specified" } */ | |
8 /* { dg-warning "struct has no members" "empty" { target *-*-* } .-1 } */ | |
9 struct s1 { | |
10 int a; | |
11 ; /* { dg-warning "extra semicolon in struct or union specified" } */ | |
12 int b; | |
13 }; | |
14 struct s2 { | |
15 ; /* { dg-warning "extra semicolon in struct or union specified" } */ | |
16 int c | |
17 }; /* { dg-warning "no semicolon at end of struct or union" } */ | |
18 struct s3 { | |
19 int d | |
20 }; /* { dg-warning "no semicolon at end of struct or union" } */ |