]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/memtemp52.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp52.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memtemp52.C b/gcc/testsuite/g++.old-deja/g++.pt/memtemp52.C
deleted file mode 100644 (file)
index 25dc7e7..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// Build don't link:
-// GROUPS passed templates membertemplates
-template<class T, int N>
-class A { };
-
-template<int N>
-struct X {
-    template<class T2, int N2>
-    void f(A<T2,N>&, A<int,N2>&)
-    { }
-};
-
-
-void foo()
-{
-  X<3> x;
-  A<char*, 3> a1;
-  A<int, 2> a2;
-  x.f(a1, a2);
-}