mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
18 lines
294 B
PHP
18 lines
294 B
PHP
--TEST--
|
|
Nested group use statements syntax error
|
|
--FILE--
|
|
<?php
|
|
namespace Fiz\Biz\Buz {
|
|
use Foo\Bar\Baz\{
|
|
A,
|
|
B {
|
|
C
|
|
D,
|
|
E
|
|
}
|
|
};
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Parse error: syntax error, unexpected '{', expecting '}' in %sns_088.php on line 5
|