(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
other/
anon-union5.C
// PR c++/97974

struct A {
  union {
    operator int ();		// { dg-error "anonymous union" }
    int a;
  };
  operator int;			// { dg-error "" }
};