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); -} -