]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/copy1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / copy1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/copy1.C b/gcc/testsuite/g++.old-deja/g++.pt/copy1.C
deleted file mode 100644 (file)
index 7981530..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-int i = 0;
-
-template <class T>
-class F 
-{
-public:
-  F() {}
-  
-  template <class T2> F(F<T2>) 
-    {
-      i = 1;
-    }      
-};
-
-
-F<int>
-foo()
-{
-  F<int> f1;
-  F<int> f2(f1);
-  return f1;
-}
-
-int
-main()
-{
-  return i;
-}
-