1--TEST-- 2Group use declarations mustn't contain just a comma 3--FILE-- 4<?php 5use Baz\{,}; 6?> 7--EXPECTF-- 8Parse error: syntax error, unexpected ',', expecting identifier (T_STRING) or function (T_FUNCTION) or const (T_CONST) in %s on line %d 9