blob: 6cf16bf241231a0739af623622819f2432e2bdaa [file] [log] [blame]
// { dg-do assemble }
// { dg-options "" }
struct S
{
S ();
};
union U {
struct {
S s; // { dg-error "" } struct with constructor in union
};
};