PR c++/67273
[official-gcc.git] / gcc / testsuite / g++.dg / parse / ctor5.C
blobf980b4a184f562673acaa55540a1c2a267f08609
1 // PR c++/27309
3 struct A
5   int i; // { dg-message "previous" }
6   A() i() {}  // { dg-error "declaration" }
7 };
9 struct B
11   A a;
14 B b;