blob: a85bbeee392e10a852aeb7b393a3f7cd6b5fda59 [file] [log] [blame]
// 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" }
};
};