aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/template31.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.brendan/template31.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.brendan/template31.C38
1 files changed, 0 insertions, 38 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/template31.C b/gcc/testsuite/g++.old-deja/g++.brendan/template31.C
deleted file mode 100644
index 3a1b149fb93..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.brendan/template31.C
+++ /dev/null
@@ -1,38 +0,0 @@
-// Build don't link:
-// GROUPS passed templates
-// PRMS Id: 13218
-
-struct C {
- int x;
- char y;
- double z;
-};
-C c02;
-
-template <int* ip> struct A {
- int* p;
- A() : p(ip) {}
-};
-
-template <C* cp> struct B {
- C* p;
- B() : p(cp) {}
-};
-
-int i00;
-
-int main(void)
-{
- A<&i00> a00;
-
- extern int i01;
- A<&i01> a01;
-
- B<&c02> b02;
-
- extern C c03;
- B<&c03> b03;
-}
-
-int i01;
-C c03;