mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
11 lines
316 B
Plaintext
11 lines
316 B
Plaintext
|
--TEST--
|
||
|
Group use declaration list should not contain leading separator
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
use Foo\Bar\{\Baz};
|
||
|
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Parse error: syntax error, unexpected '\' (T_NS_SEPARATOR), expecting identifier (T_STRING) or function (T_FUNCTION) or const (T_CONST) in /home/nikic/php-src/Zend/tests/ns_096.php on line 3
|