1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 10:43:30 +02:00
Files
archived-php-src/Zend/tests/throw/exit_in_finally.phpt
T
twosee 7eba683e2c Fix unexpected deprecated dynamic property warning (#9324)
Occurred when exit() with uncaught exception in finally block.
2022-08-15 20:54:39 +08:00

14 lines
172 B
PHP

--TEST--
Test exit with uncaught exception in finally block
--FILE--
<?php
try {
throw new Exception();
} finally {
echo "Done\n";
exit();
}
?>
--EXPECT--
Done