Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.dg / struct-semi-4.c
blob6f4dc7c0a7fe6d01914936e5c3d4fb4df1e15571
1 /* Test for missing semicolons in structures: anonymous structures and
2 similar cases. */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
6 struct s { struct { int a; } }; /* { dg-warning "no semicolon" } */
7 int *f (struct s *p) { return &p->a; }