aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/eh/cond2.C
diff options
context:
space:
mode:
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;
-}