php-8.0.30-src/Zend/tests/exit_finally_3.phpt

20 lines
243 B
PHP

--TEST--
exit() and finally (3)
--FILE--
<?php
// TODO: In the future, we should execute the finally block.
function test() {
try {
exit("Exit\n");
} finally {
return 42;
}
}
var_dump(test());
?>
--EXPECT--
Exit