aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/template7.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.brendan/template7.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.brendan/template7.C48
1 files changed, 0 insertions, 48 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/template7.C b/gcc/testsuite/g++.old-deja/g++.brendan/template7.C
deleted file mode 100644
index 59dc4835632..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.brendan/template7.C
+++ /dev/null
@@ -1,48 +0,0 @@
-// Build don't link:
-// GROUPS passed templates
-template <class ET>
-class ChainElem {
-public:
-
- ET data;
-};
-
-template <class ET>
-class Chain {
-public:
-
- ChainElem<ET> *first;
-
- virtual ~Chain() {}
-
-};
-
-struct B {
-};
-
-struct X : B {
- ~X ();
-};
-
-struct TBNFexpression {
-};
-
-struct TCaseLabelPair {
-};
-
-struct TVariant {
- Chain<TCaseLabelPair> CaseLabelList;
-};
-
-struct TCaseConstruct {
- Chain<TBNFexpression> TagFieldPrefixes;
- Chain<TVariant> Variants;
-};
-
-struct Production {
- X TypeName;
-};
-
-struct SimpleSyntax {
- Chain<Production> Productions;
-};