OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / ctor1.C
1 /* { dg-do compile } */
2 // PR C++/30303
3 // This used to ICE because we did not return NULL
4 // in grokfndecl when an error happened.
5
6 class A
7 {
8   int i;
9 };
10
11 A::A() { A(); } /* { dg-error "definition of implicitly-declared" } */