aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMark Mitchell <mmitchel@gcc.gnu.org>1999-09-03 00:13:58 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>1999-09-03 00:13:58 +0000
commit3ebd9bc487f5268b8fefe1bb1f362d29176a6eb6 (patch)
tree4276e6b6afd0f2eb4bdca58263465360d254500a /gcc
parentb5cc7593728fd7f39446dda95e5705ea593e188b (diff)
downloadgcc-3ebd9bc487f5268b8fefe1bb1f362d29176a6eb6.zip
gcc-3ebd9bc487f5268b8fefe1bb1f362d29176a6eb6.tar.gz
gcc-3ebd9bc487f5268b8fefe1bb1f362d29176a6eb6.tar.bz2
Remove test
From-SVN: r29070
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/cond1.C26
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);
-}
-