diff options
author | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-09-03 00:13:58 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-09-03 00:13:58 +0000 |
commit | 3ebd9bc487f5268b8fefe1bb1f362d29176a6eb6 (patch) | |
tree | 4276e6b6afd0f2eb4bdca58263465360d254500a | |
parent | b5cc7593728fd7f39446dda95e5705ea593e188b (diff) | |
download | gcc-3ebd9bc487f5268b8fefe1bb1f362d29176a6eb6.zip gcc-3ebd9bc487f5268b8fefe1bb1f362d29176a6eb6.tar.gz gcc-3ebd9bc487f5268b8fefe1bb1f362d29176a6eb6.tar.bz2 |
Remove test
From-SVN: r29070
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/cond1.C | 26 |
1 files changed, 0 insertions, 26 deletions
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 c025beb..0000000 --- a/gcc/testsuite/g++.old-deja/g++.other/cond1.C +++ /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); -} - |