diff --git a/gcc/testsuite/g++.old-deja/g++.pt/typename8.C b/gcc/testsuite/g++.old-deja/g++.pt/typename8.C index 5e5f2f07505..e95a0a17bfe 100644 --- a/gcc/testsuite/g++.old-deja/g++.pt/typename8.C +++ b/gcc/testsuite/g++.old-deja/g++.pt/typename8.C @@ -7,6 +7,7 @@ public: anotherT t; // ERROR - undefined type + A() { } A(anotherT _t) { // ERROR - undefined type t=_t; } @@ -20,8 +21,8 @@ class B : public A< B > // ERROR - forward declaration { public: typedef int myT; -}; // ERROR - base with non-default constructor +}; int main() { - B b; // ERROR - no constructor + B b; }