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