mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
16 lines
218 B
PHP
16 lines
218 B
PHP
--TEST--
|
|
Try finally (segfault with empty break)
|
|
--FILE--
|
|
<?php
|
|
function foo () {
|
|
try {
|
|
break;
|
|
} finally {
|
|
}
|
|
}
|
|
|
|
foo();
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot break/continue 1 level in %stry_finally_011.php on line %d
|