]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/memtemp42.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp42.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memtemp42.C b/gcc/testsuite/g++.old-deja/g++.pt/memtemp42.C
deleted file mode 100644 (file)
index 3c11dd4..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// Build don't run:
-// GROUPS passed templates membertemplates
-template<class T, int N>
-class Foo {
-
-public:
-    template<int N2>
-    Foo<T,N> operator=(const Foo<T,N2>& z)
-    {
-        return Foo<T,N>();
-    }
-};
-
-int main()
-{
-    Foo<double,4> x;
-    Foo<double,7> y;
-    x = y;
-
-    return 0;
-}
-