blob: 2547a6f0275bfb7870af112b678033c920b5625b (
plain)
1
2
3
4
5
6
7
8
|
--TEST--
Unmixed group use declarations mustn't allow more than one comma
--FILE--
<?php
use const Baz\{Foo,,};
?>
--EXPECTF--
Parse error: syntax error, unexpected token ",", expecting "}" in %s on line %d
|