diff options
author | Mark Mitchell <mmitchel@gcc.gnu.org> | 1998-09-05 19:11:15 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1998-09-05 19:11:15 +0000 |
commit | 00dd3ccd9bb42709b6f97f6e94fcbbf4392d57d9 (patch) | |
tree | 3a689b9d10515de96e6a5c44b05a1105370efbd3 /gcc | |
parent | 55953cea37e38f43343078f92e208fd3d1ad756d (diff) | |
download | gcc-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.C | 16 |
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); -} |