aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMark Mitchell <mmitchel@gcc.gnu.org>1998-09-05 19:11:15 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>1998-09-05 19:11:15 +0000
commit00dd3ccd9bb42709b6f97f6e94fcbbf4392d57d9 (patch)
tree3a689b9d10515de96e6a5c44b05a1105370efbd3 /gcc
parent55953cea37e38f43343078f92e208fd3d1ad756d (diff)
downloadgcc-00dd3ccd9bb42709b6f97f6e94fcbbf4392d57d9.zip
gcc-00dd3ccd9bb42709b6f97f6e94fcbbf4392d57d9.tar.gz
gcc-00dd3ccd9bb42709b6f97f6e94fcbbf4392d57d9.tar.bz2
Remove duplicate test
From-SVN: r22270
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.pt/explicit7.C16
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/explicit7.C b/gcc/testsuite/g++.old-deja/g++.pt/explicit7.C
deleted file mode 100644
index 9f71442..0000000
--- a/gcc/testsuite/g++.old-deja/g++.pt/explicit7.C
+++ /dev/null
@@ -1,16 +0,0 @@
-// Build don't run:
-// GROUPS passed templates
-struct S
-{
- template <class T>
- void foo(T t);
-
- template <>
- void foo<int>(int i) { }
-};
-
-int main()
-{
- S s;
- s.template foo<int>(3.0);
-}