aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/eh/cond2.C
diff options
context:
space:
mode:
authorNo Author <no-author@gcc.gnu.org>2004-02-14 20:20:59 +0000
committerNo Author <no-author@gcc.gnu.org>2004-02-14 20:20:59 +0000
commit0cf7278b8ebcf154c6c9ee8977cdb1aafa599111 (patch)
tree3a5a08025b0b69cfb3a4cfb37527457622e9763f /gcc/testsuite/g++.dg/eh/cond2.C
parent7d2a151bc939cca0aa11efc6b001b87e7b7316dc (diff)
This commit was manufactured by cvs2svn to create tagreleases/gcc-3.3.3
'gcc_3_3_3_release'. From-SVN: r77826
Diffstat (limited to 'gcc/testsuite/g++.dg/eh/cond2.C')
-rw-r--r--gcc/testsuite/g++.dg/eh/cond2.C19
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc/testsuite/g++.dg/eh/cond2.C b/gcc/testsuite/g++.dg/eh/cond2.C
deleted file mode 100644
index e4b45f7a46f..00000000000
--- a/gcc/testsuite/g++.dg/eh/cond2.C
+++ /dev/null
@@ -1,19 +0,0 @@
-// PR c++/14083
-
-struct A {
- A() throw() { }
- A(const A&) throw() { }
-};
-
-struct X {
- A a;
- X();
- X& operator=(const X& __str);
-};
-
-bool operator==(const X& __lhs, const char* __rhs);
-
-int main() {
- X x;
- x=="" ? x : throw 1;
-}