blob: f980b4a184f562673acaa55540a1c2a267f08609 [file] [log] [blame]
// PR c++/27309
struct A
{
int i; // { dg-message "previous" }
A() i() {} // { dg-error "declaration" }
};
struct B
{
A a;
};
B b;