1
0
mirror of https://github.com/php/php-src.git synced 2026-04-17 13:01:02 +02:00
Files
archived-php-src/Zend/tests/temporary_cleaning_010.phpt
2016-06-08 11:14:06 +03:00

22 lines
276 B
PHP

--TEST--
Live range & throw from finally
--FILE--
<?php
function test() {
try {
$a = [1, 2, 3];
return $a + [];
} finally {
throw new Exception;
}
}
try {
test();
} catch (Exception $e) {
echo "exception\n";
}
?>
--EXPECT--
exception