(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ext/
anon-struct8.C
// { dg-options "" }

struct A { };
struct B {
  struct: A { int i; };		// { dg-error "anonymous struct with base" }
};
union U {
  struct: A { int i; };		// { dg-error "anonymous struct with base" }
};