php-src/Zend/tests/try/try_finally_009.phpt
2015-07-10 13:35:14 +02:00

24 lines
447 B
PHP

--TEST--
Try finally (with for continue)
--FILE--
<?php
function foo () {
for($i = 0; $i < 5; $i++) {
do {
try {
try {
} finally {
}
} catch (Exception $e) {
} finally {
continue;
}
} while (0);
}
}
foo();
?>
--EXPECTF--
Fatal error: jump out of a finally block is disallowed in %stry_finally_009.php on line %d