(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
parse/
crash69.C
// PR c++/84605

struct b {
  int x(((struct b {})));  // { dg-error "expected|redefinition" }
};

struct c {
  struct d {
    int x(((struct c {})));  // { dg-error "expected|redefinition" }
  };
};