]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/memclass5.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memclass5.C
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 (file)
index 06a1413..0000000
+++ /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>();
-}