]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/anon-struct-4.c.expected
Package description and copyright added.
[pkg-cerco/acc.git] / tests / GCCTestSuite / anon-struct-4.c.expected
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" } */
5
6 struct s {
7   struct { int a; };
8   const struct { int b; };
9   struct { int c; } volatile;
10 };