mirror of
https://github.com/php/php-src.git
synced 2024-12-14 20:33:36 +08:00
8 lines
239 B
PHP
8 lines
239 B
PHP
--TEST--
|
|
Group use declarations mustn't contain just a comma
|
|
--FILE--
|
|
<?php
|
|
use Baz\{,};
|
|
?>
|
|
--EXPECTF--
|
|
Parse error: syntax error, unexpected ',', expecting identifier (T_STRING) or function (T_FUNCTION) or const (T_CONST) in %s on line %d |