xref: /PHP-8.0/Zend/tests/ns_088.phpt (revision 55a15f32)
1--TEST--
2Nested group use statements syntax error
3--FILE--
4<?php
5namespace Fiz\Biz\Buz {
6    use Foo\Bar\Baz\{
7        A,
8        B {
9            C
10            D,
11            E
12        }
13    };
14}
15?>
16--EXPECTF--
17Parse error: syntax error, unexpected token "{", expecting "}" in %s on line %d
18