aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memtemp29.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/memtemp29.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/memtemp29.C32
1 files changed, 0 insertions, 32 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memtemp29.C b/gcc/testsuite/g++.old-deja/g++.pt/memtemp29.C
deleted file mode 100644
index 4000070c30a..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/memtemp29.C
+++ /dev/null
@@ -1,32 +0,0 @@
-// Build don't run:
-// GROUPS passed templates membertemplates
-extern "C" int printf(const char*, ...);
-
-template <class X>
-struct S
-{
- template <class U>
- void f(U u);
-
- template <class U>
- void g(U U);
-
- int c[16];
-};
-
-template <class X>
-template <class U>
-void S<X>::f(U u)
- { printf ("In S::f(U)\n"); g(u); }
-
-template <class X>
-template <class U>
-void S<X>::g(U u)
- { printf ("In S::g(U)\n"); }
-
-int main()
-{
- S<char*> s;
- s.f(3);
- s.f("adf");
-}