1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/try/bug70228_5.phpt

21 lines
308 B
PHP

--TEST--
Bug #70228 (memleak if return hidden by throw in finally block)
--FILE--
<?php
function test() {
try {
return str_repeat("a", 2);
} finally {
throw new Exception("ops");
}
}
try {
test();
} catch (Exception $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
ops