aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/memclass15.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/memclass15.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/memclass15.C27
1 files changed, 0 insertions, 27 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memclass15.C b/gcc/testsuite/g++.old-deja/g++.pt/memclass15.C
deleted file mode 100644
index 52f92bf5221..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/memclass15.C
+++ /dev/null
@@ -1,27 +0,0 @@
-// Build don't link:
-
-template <class T>
-struct S1
-{
- template <class U>
- struct S2 {};
-
- template <class X, class Y, class Z>
- void f(X, Y, Z)
- {
- S2<Z> s2z;
- }
-
- template <class X, class Z>
- void g(X, Z)
- {
- S2<Z> s2z;
- }
-};
-
-
-void h()
-{
- S1<int> si;
- si.g(3, 4);
-}