Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
eh
/
cond2.C
blob: e4b45f7a46f8289c1e70e3ea78770f472534466d [
file
] [
log
] [
blame
]
// 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
;
}