Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
desig1.C
blob: c3ff4c1425815fef8b827d39516de62b811ae80e [
file
] [
log
] [
blame
]
// { dg-options "" }
struct
a
{
int
x
;
};
struct
b
{
int
x
;
int
y
;
};
struct
foo
{
union
{
struct
a a
;
struct
b b
;
}
u
;
};
int
main
(
void
)
{
struct
foo bar
=
{
u
:
{
b
:
{
x
:
0
,
y
:
0
,
}}};
(
void
)
bar
;
return
0
;
}