mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
12 lines
208 B
PHP
12 lines
208 B
PHP
--TEST--
|
|
jump 08: goto into loop (forward)
|
|
--FILE--
|
|
<?php
|
|
goto L1;
|
|
while (0) {
|
|
L1: echo "bug\n";
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: 'goto' into loop or switch statement is disallowed in %sjump08.php on line 2
|