mirror of
https://github.com/php/php-src.git
synced 2024-11-27 20:03:40 +08:00
13 lines
152 B
PHP
13 lines
152 B
PHP
--TEST--
|
|
Duplicate labels are not allowed
|
|
--FILE--
|
|
<?php
|
|
|
|
foo:
|
|
foo:
|
|
goto foo;
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Label 'foo' already defined in %s on line %d
|