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