summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/eh/cond2.C
blob: e4b45f7a46f8289c1e70e3ea78770f472534466d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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; 
}