Remove duplicate test
authorMark Mitchell <mmitchel@gcc.gnu.org>
Sat, 5 Sep 1998 19:11:15 +0000 (19:11 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Sat, 5 Sep 1998 19:11:15 +0000 (19:11 +0000)
From-SVN: r22270

gcc/testsuite/g++.old-deja/g++.pt/explicit7.C [deleted file]

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 (file)
index 9f71442..0000000
+++ /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);
-}