Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
eh
/
nrv1.C
blob: e2457e87e65b2638b7be04ce67272ccbbb1f8685 [
file
] [
log
] [
blame
]
// PR c++/5636
// Bug: the named return value optimization interfered with EH cleanups.
int
c
,
d
;
struct
A
{
A
()
{
++
c
;
}
~
A
()
{
++
d
;
}
};
A f
()
{
A nrv
;
throw
42
;
return
nrv
;
}
int
main
()
{
try
{
A a
=
f
();
}
catch
(...)
{
}
return
(
d
<
c
);
}