aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/typename21.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/typename21.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/typename21.C25
1 files changed, 0 insertions, 25 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/typename21.C b/gcc/testsuite/g++.old-deja/g++.pt/typename21.C
deleted file mode 100644
index 2dc52aa429a..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/typename21.C
+++ /dev/null
@@ -1,25 +0,0 @@
-// Build don't link:
-// Origin: Mark Mitchell <mark@codesourcery.com>
-// Special g++ Options:
-
-template <class T>
-struct S1 {
- typedef T X;
-};
-
-template <class T>
-struct B {
- typedef T I;
-};
-
-template <class T>
-struct S2 : public B<T> {
- struct I {};
-
- typedef typename S1<I>::X IX;
-
- void f(IX);
-};
-
-template <class T>
-void S2<T>::f(IX) {}