aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/instantiate2.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/instantiate2.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/instantiate2.C12
1 files changed, 0 insertions, 12 deletions
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
index a5c6c49d16f..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/instantiate2.C
+++ /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);
-