summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/mangle2.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/mangle2.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.jason/mangle2.C23
1 files changed, 0 insertions, 23 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/mangle2.C b/gcc/testsuite/g++.old-deja/g++.jason/mangle2.C
deleted file mode 100644
index b1876b71249..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.jason/mangle2.C
+++ /dev/null
@@ -1,23 +0,0 @@
-// I guess this was broken once.
-// Build don't link:
-
-template <class C, int D> class X { };
-typedef X<int, 0> T;
-
-class Y
-{
- public:
- ~Y();
-};
-
-class Z
-{
- public:
- void f(T**);
-};
-
-void Z::f(T** t)
-{ }
-
-Y::~Y()
-{ }