blob: 38c91f41a5c952ec32adc9dfda5e4ad99e1a94b8 [file] [log] [blame]
// PR c++/83956
// { dg-do compile { target c++11 } }
struct a {
~a() = delete;
};
struct b {
~b() {}
union {
a c;
};
};