Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
anon-union2.C
blob: 38c91f41a5c952ec32adc9dfda5e4ad99e1a94b8 [
file
] [
log
] [
blame
]
// PR c++/83956
// { dg-do compile { target c++11 } }
struct
a
{
~
a
()
=
delete
;
};
struct
b
{
~
b
()
{}
union
{
a c
;
};
};