mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
20 lines
385 B
PHP
20 lines
385 B
PHP
--TEST--
|
|
Group use statements with compound namespaces
|
|
--FILE--
|
|
<?php
|
|
namespace Foo\Bar {
|
|
class A { function __construct() {echo __METHOD__,"\n";} }
|
|
}
|
|
namespace Foo\Bar\Baz {
|
|
class B { function __construct() {echo __METHOD__,"\n";} }
|
|
}
|
|
namespace Fiz\Biz\Buz {
|
|
|
|
use Foo\Bar\{ A, Baz\B };
|
|
new A;
|
|
new B;
|
|
}
|
|
|
|
--EXPECTF--
|
|
Foo\Bar\A::__construct
|
|
Foo\Bar\Baz\B::__construct |