mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
f66f55edc5
[DOC]
9 lines
151 B
PHP
Executable File
9 lines
151 B
PHP
Executable File
--TEST--
|
|
jump 06: goto to undefined label
|
|
--FILE--
|
|
<?php
|
|
goto L1;
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: 'goto' to undefined label 'L1' in %sjump06.php on line 2
|