repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
eh
/
cond2.C
blob
e4b45f7a46f8289c1e70e3ea78770f472534466d
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
}