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