aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/template29.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/template29.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.jason/template29.C19
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/template29.C b/gcc/testsuite/g++.old-deja/g++.jason/template29.C
deleted file mode 100644
index d4212e2e5e7..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.jason/template29.C
+++ /dev/null
@@ -1,19 +0,0 @@
-// PRMS Id: 9500
-// Build don't link:
-
-template <int S>
-class base
- {
-public:
- inline base();
- };
-
-template <class T>
-class derived : public base<sizeof(T)>
- {
-public:
- inline derived();
- };
-
-template <class T>
-inline derived<T>::derived() : base<sizeof(T)>(){}