OSDN Git Service

* g++.dg/cdce3.C: Skip on alpha*-dec-osf5*.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / anon-struct-4.c
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 };