xref: /php-src/Zend/tests/ns_093.phpt (revision 7aacc705)
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--EXPECT--
25Done
26