]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/instantiate2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / instantiate2.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/instantiate2.C b/gcc/testsuite/g++.old-deja/g++.pt/instantiate2.C
deleted file mode 100644 (file)
index a5c6c49..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-// Build don't link:
-
-template<class T>
-struct X_two {
-  template <class T2> T2 conv_compare_ge(T2 test) {
-    T2 tmp_value = T2 (0);
-    return (tmp_value > test ? tmp_value : test);
-  }
-};
-
-template int X_two<double>::conv_compare_ge(int);
-