--TEST--
Bug #70228 (memleak if return in finally block)
--FILE--
<?php
function test() {
try {
throw new Exception(1);
} finally {
throw new Exception(2);
return 42;
}
var_dump(test());
?>
--EXPECT--
int(42)