summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/spec16.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.pt/spec16.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/spec16.C21
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/spec16.C b/gcc/testsuite/g++.old-deja/g++.pt/spec16.C
deleted file mode 100644
index 9f6da97c771..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/spec16.C
+++ /dev/null
@@ -1,21 +0,0 @@
-// Build don't link:
-
-template<class K>
-struct A {
- int foo(const K&);
- int bar(const K&);
-};
-
-template<class K>
-int
-A<K>::bar(const K& k)
-{
- return(foo(k));
-}
-
-template<>
-int
-A<const char*>::foo(const char*const& k)
-{
- return((int)k);
-}