blob: e212317ea3f72f141355faef61b30f85cda8b686 (
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
57
|
/* Test for designated initializers for anonymous structures and
unions. PR 10676. */
/* { dg-do run } */
/* { dg-options "" } */
extern void abort (void);
extern void exit (int);
struct s
{
int a;
struct
{
int b;
int c;
};
union
{
int d;
struct
{
int e;
};
};
struct
{
struct
{
struct
{
int f;
};
};
};
};
struct s x =
{
.e = 5,
.b = 4,
.a = 3,
.f = 7,
.c = 9
};
int
main (void)
{
if (x.a != 3
|| x.b != 4
|| x.c != 9
|| x.d != 5
|| x.e != 5
|| x.f != 7)
abort ();
exit (0);
}
|