Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
anonunion2.C
blob: cb3c12dff1ed485765a3f6adff327d3d1260df8b [
file
] [
log
] [
blame
]
template
<
int
i
>
struct
S
{
S
()
{
union
{
int
a
;
};
a
=
0
;
}
};
S
<
0
>
s
;