blob: 587427ab209be5ef872d5aec131536b9676c6ac0 [file] [log] [blame]
// Build don't link:
// Special g++ Options:
struct S
{
S ();
};
union U {
struct {
S s; // ERROR - struct with constructor in union
};
};