mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
15 lines
223 B
PHP
15 lines
223 B
PHP
--TEST--
|
|
jmp into a finally block 01
|
|
--FILE--
|
|
<?php
|
|
function foo() {
|
|
goto test;
|
|
try {
|
|
} finally {
|
|
test:
|
|
}
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: jump into a finally block is disallowed in %sfinally_goto_001.php on line %d
|