(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.ext/
anon2.C
// { dg-do assemble  }
// { dg-options "" }
// { dg-prune-output "note" }

struct S 
{
  S ();
};

union U {
  struct { 
    S s; // { dg-error "" } struct with constructor in union
  };
};