blob: 8d8b759a5a9be36f36494eaaf08f16cf6c01acf0 (
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 ',', expecting '}' in %s on line %d
|