From: Mark Mitchell Date: Fri, 3 Sep 1999 00:13:58 +0000 (+0000) Subject: Remove test X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3ebd9bc487f5268b8fefe1bb1f362d29176a6eb6;p=gcc.git Remove test From-SVN: r29070 --- 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 index c025beb3ffd..00000000000 --- a/gcc/testsuite/g++.old-deja/g++.other/cond1.C +++ /dev/null @@ -1,26 +0,0 @@ -// Build don't run: -// Origin: Mark Mitchell - -template -void f (T&) ; - -template <> -void f (void (&)()) -{ -} - -void g () -{ -} - -void h () -{ -} - -bool b; - -int main () -{ - f (b ? g : h); -} -