Remove test
authorMark Mitchell <mmitchel@gcc.gnu.org>
Fri, 3 Sep 1999 00:13:58 +0000 (00:13 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Fri, 3 Sep 1999 00:13:58 +0000 (00:13 +0000)
From-SVN: r29070

gcc/testsuite/g++.old-deja/g++.other/cond1.C [deleted file]

diff --git a/gcc/testsuite/g++.old-deja/g++.other/cond1.C b/gcc/testsuite/g++.old-deja/g++.other/cond1.C
deleted file mode 100644 (file)
index c025beb..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-// Build don't run:
-// Origin: Mark Mitchell <mark@codesourcery.com>
-
-template <class T>
-void f (T&) ;
-
-template <>
-void f (void (&)()) 
-{
-}
-
-void g () 
-{
-}
-
-void h ()
-{
-}
-
-bool b;
-
-int main ()
-{
-  f (b ? g : h);
-}
-