mirror of
https://github.com/php/php-src.git
synced 2024-12-15 04:45:03 +08:00
ded3d984c6
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
20 lines
384 B
PHP
20 lines
384 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;
|
|
}
|
|
|
|
--EXPECT--
|
|
Foo\Bar\A::__construct
|
|
Foo\Bar\Baz\B::__construct |