aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/typename8.C5
1 files 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 5e5f2f0..e95a0a1 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;
}