blob: 287f35d2eb963e705a024589933a12c0134c94bb (
plain)
1
2
3
4
5
6
7
8
|
--TEST--
Unmixed group use declarations mustn't contain two commas mid-list
--FILE--
<?php
use const Baz\{Foo,,Bar};
?>
--EXPECTF--
Parse error: syntax error, unexpected token ",", expecting "}" in %s on line %d
|