]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/memtemp67.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp67.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memtemp67.C b/gcc/testsuite/g++.old-deja/g++.pt/memtemp67.C
deleted file mode 100644 (file)
index 7170c90..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-template <class T>
-struct A
-{
-  template <class T2>
-  operator A<T2>() const { return A<T2>(); }
-};
-
-int main()
-{
-  A<int> a1;
-  A<long> a2;    
-  A<double> a3;
-  A<char> a4;
-
-  a2 = a1.operator A<long>();
-  a3 = (A<double>) a1;                   
-  a4 = a1;
-}