From 95f1a0447f9be57101aa02ac8182a275c3ecb60c Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Fri, 1 Oct 1999 18:44:51 -0400 Subject: [PATCH] update From-SVN: r29758 --- gcc/testsuite/g++.old-deja/g++.pt/typename8.C | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; }