xref: /PHP-7.0/Zend/tests/ns_093.phpt (revision 22d6cc7c)
1--TEST--
2Group use declarations and whitespace nuances
3--FILE--
4<?php
5
6// should not throw syntax errors
7
8use Foo\Bar     \{ A };
9
10use Foo\Bar\    { B };
11
12use Foo\Bar
13\{
14    C
15};
16
17use Foo\Bar\
18{
19    D
20};
21
22echo "\nDone\n";
23
24
25--EXPECTF--
26
27Done