blob: c599fa5669b7084567a2ba2ff33ec7f10ca7f4e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/* { dg-options "-std=iso9899:1990 -pedantic" } */
/* In strict ISO C mode, we don't recognize the anonymous struct/union
extension or any Microsoft extensions. */
struct A { char a; };
/* MS extension. */
struct B {
struct A; /* { dg-warning "does not declare anything" } */
char b;
};
char testB[sizeof(struct B) == sizeof(struct A) ? 1 : -1];
/* MS extension. */
struct C {
struct D { char d; }; /* { dg-warning "does not declare anything" } */
char c;
};
char testC[sizeof(struct C) == sizeof(struct A) ? 1 : -1];
char testD[sizeof(struct D) == sizeof(struct A) ? 1 : -1];
/* GNU extension. */
struct E {
struct { char z; }; /* { dg-warning "unnamed structs" } */
char e;
};
/* MS extension. */
typedef struct A typedef_A;
struct F {
typedef_A; /* { dg-warning "does not declare anything" } */
char f;
};
char testF[sizeof(struct F) == sizeof(struct A) ? 1 : -1];
/* __extension__ enables GNU C mode for the duration of the declaration. */
__extension__ struct G {
struct { char z; };
char g;
};
char testG[sizeof(struct G) == 2 * sizeof(struct A) ? 1 : -1];
struct H {
__extension__ struct { char z; };
char h;
};
char testH[sizeof(struct H) == 2 * sizeof(struct A) ? 1 : -1];
/* Make sure __extension__ gets turned back off. */
struct I {
struct { char z; }; /* { dg-warning "unnamed structs" } */
char i;
};
char testI[sizeof(struct I) == sizeof(struct E) ? 1 : -1];
|