FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / gcc.dg / anon-struct-1.c
blob587d59d72204178ae558c293ce8c7f0d964d445b
1 /* { dg-options "-std=iso9899:1990" } */
2 /* In strict ISO C mode, we don't recognize the anonymous struct/union
3 extension or any Microsoft extensions. */
5 struct A { char a; };
7 /* MS extension. */
8 struct B {
9 struct A; /* { dg-warning "does not declare anything" } */
10 char b;
12 char testB[sizeof(struct B) == sizeof(struct A) ? 1 : -1];
14 /* MS extension. */
15 struct C {
16 struct D { char d; }; /* { dg-warning "does not declare anything" } */
17 char c;
19 char testC[sizeof(struct C) == sizeof(struct A) ? 1 : -1];
20 char testD[sizeof(struct D) == sizeof(struct A) ? 1 : -1];
22 /* GNU extension. */
23 struct E {
24 struct { char z; }; /* { dg-warning "does not declare anything" } */
25 char e;
27 char testE[sizeof(struct E) == sizeof(struct A) ? 1 : -1];
29 /* MS extension. */
30 typedef struct A typedef_A;
31 struct F {
32 typedef_A; /* { dg-warning "does not declare anything" } */
33 char f;
35 char testF[sizeof(struct F) == sizeof(struct A) ? 1 : -1];
37 /* __extension__ enables GNU C mode for the duration of the declaration. */
38 __extension__ struct G {
39 struct { char z; };
40 char g;
42 char testG[sizeof(struct G) == 2 * sizeof(struct A) ? 1 : -1];
44 struct H {
45 __extension__ struct { char z; };
46 char h;
48 char testH[sizeof(struct H) == 2 * sizeof(struct A) ? 1 : -1];
50 /* Make sure __extension__ gets turned back off. */
51 struct I {
52 struct { char z; }; /* { dg-warning "does not declare anything" } */
53 char i;
55 char testI[sizeof(struct I) == sizeof(struct A) ? 1 : -1];