mirror of
https://github.com/php/php-src.git
synced 2024-12-15 04:45:03 +08:00
27 lines
241 B
PHP
27 lines
241 B
PHP
--TEST--
|
|
Group use declarations and whitespace nuances
|
|
--FILE--
|
|
<?php
|
|
|
|
// should not throw syntax errors
|
|
|
|
use Foo\Bar \{ A };
|
|
|
|
use Foo\Bar\ { B };
|
|
|
|
use Foo\Bar
|
|
\{
|
|
C
|
|
};
|
|
|
|
use Foo\Bar\
|
|
{
|
|
D
|
|
};
|
|
|
|
echo "\nDone\n";
|
|
|
|
|
|
--EXPECTF--
|
|
|
|
Done |