PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / anon-struct-4.c
blobdc30b0cc0baac4ff8d2df73d0ed2cebd65aae518
1 /* Test anonymous structures with type qualifiers. Bug 8420. */
2 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
3 /* { dg-do compile } */
4 /* { dg-options "-std=gnu89" } */
6 struct s {
7 struct { int a; };
8 const struct { int b; };
9 struct { int c; } volatile;