aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memclass5.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/memclass5.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/memclass5.C22
1 files changed, 0 insertions, 22 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memclass5.C b/gcc/testsuite/g++.old-deja/g++.pt/memclass5.C
deleted file mode 100644
index 06a1413eb0e..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/memclass5.C
+++ /dev/null
@@ -1,22 +0,0 @@
-template <class T> struct A {
- template <class U> struct B {
- template <class V> static void f () { }
- void g () { }
- };
-};
-
-template <class T, class U>
-void f ()
-{
- A<T>::template B<U>::template f<T> ();
- typename A<T>::B<U> b;
- typename A<T>::template B<U> b2;
- b.A<T>::template B<U>::~B();
-}
-
-template <class T> struct C: public A<T>::B<T> { };
-
-int main ()
-{
- f<int, char>();
-}