aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/template6.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.brendan/template6.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.brendan/template6.C30
1 files changed, 0 insertions, 30 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/template6.C b/gcc/testsuite/g++.old-deja/g++.brendan/template6.C
deleted file mode 100644
index 96459ca355d..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.brendan/template6.C
+++ /dev/null
@@ -1,30 +0,0 @@
-// Build don't link:
-// GROUPS passed templates
-struct B {
-};
-
-struct X : B {
- ~X ();
-};
-
-struct Request {
- X s;
-};
-
-template <class ET> class TC {
- ET data;
-};
-
-struct TMem {
-
- ~TMem() {}
-
- TC<Request> *req;
-};
-
-struct FIO {
-
- void init ();
-
- FIO () { init(); }
-};