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

20 lines
265 B
PHP

--TEST--
exit() and finally (1)
--FILE--
<?php
// TODO: In the future, we should execute the finally block.
try {
exit("Exit\n");
} catch (Throwable $e) {
echo "Not caught\n";
} finally {
echo "Finally\n";
}
echo "Not executed\n";
?>
--EXPECT--
Exit