aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/t14a.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/t14a.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/t14a.C25
1 files changed, 0 insertions, 25 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/t14a.C b/gcc/testsuite/g++.old-deja/g++.pt/t14a.C
deleted file mode 100644
index 694f846fbe5..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/t14a.C
+++ /dev/null
@@ -1,25 +0,0 @@
-// Build don't link:
-
-class OBJECT
-{
- int a;
-};
-
-
-
-template <class T> class TESTA
-{
-public:
- TESTA();
- T foo(int i) {T t = 0; return t;}
-};
-
-
-
-void foo()
-{
- TESTA<OBJECT *> *foo;
-
- foo = new TESTA<OBJECT *>;
-}
-