aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/typename6.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/typename6.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/typename6.C22
1 files changed, 0 insertions, 22 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/typename6.C b/gcc/testsuite/g++.old-deja/g++.pt/typename6.C
deleted file mode 100644
index a3df71840e7..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/typename6.C
+++ /dev/null
@@ -1,22 +0,0 @@
-// We don't try to make implicit typename handle this case.
-
-// Build don't link:
-// Special g++ Options:
-
-template <class T>
-struct A
-{
- typedef T A_Type;
-};
-
-
-template <class U>
-struct B : public A<U>
-{
- A_Type Func(); // ERROR - candidate
-};
-
-template <class U>
-A<U>::A_Type B<U>::Func()
-{ // ERROR - no match
-}