blob: c7798da8f072e74e80d6ec067f6abd69d75d8fb6 (
plain)
1
2
3
4
5
6
7
8
|
--TEST--
Unmixed group use declarations mustn't begin with a comma
--FILE--
<?php
use function Baz\{,Foo};
?>
--EXPECTF--
Parse error: syntax error, unexpected token ",", expecting identifier or namespaced name in %s on line %d
|