ns_061.phpt   [plain text]


--TEST--
061: use in global scope
--FILE--
<?php
class A {}
use \A as B;
echo get_class(new B)."\n";
--EXPECT--
A