mirror of
https://github.com/php/php-src.git
synced 2026-04-22 23:48:14 +02:00
8 lines
213 B
PHP
8 lines
213 B
PHP
--TEST--
|
|
Unmixed group use declarations mustn't begin with a comma
|
|
--FILE--
|
|
<?php
|
|
use function Baz\{,Foo};
|
|
?>
|
|
--EXPECTF--
|
|
Parse error: syntax error, unexpected ',', expecting identifier (T_STRING) in %s on line %d |