OSDN Git Service

* gcc.dg/tm/memopt-6.c: Cleanup tmedge tree dump.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / eh / cond2.C
1 // PR c++/14083
2
3 struct A { 
4   A() throw() { } 
5   A(const A&) throw() { } 
6 }; 
7  
8 struct X { 
9   A a; 
10   X(); 
11   X& operator=(const X& __str); 
12 }; 
13  
14 bool operator==(const X& __lhs, const char* __rhs); 
15         
16 int main() { 
17   X x; 
18   x=="" ? x : throw 1; 
19 }