* g++.dg/debug/pr71432.C: Fail on AIX.
[official-gcc.git] / gcc / testsuite / g++.dg / parse / ctor9.C
blob8b2cbf7a643d415bbd944c267924952cb2b418c2
1 /* PR c++/37647 */
2 /* { dg-do compile } */
4 struct A
6   A() { void A(); } /* { dg-error "return type specification for constructor invalid|non-class scope" } */
7 };