1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 01:32:22 +01:00
Files
archived-php-src/Zend/tests/try/try_finally_005.phpt
2015-07-10 13:35:14 +02:00

18 lines
254 B
PHP

--TEST--
Try finally (with long goto)
--FILE--
<?php
function foo () {
try {
} finally {
goto label;
}
label:
return 1;
}
foo();
?>
--EXPECTF--
Fatal error: jump out of a finally block is disallowed in %stry_finally_005.php on line %d