php-src/Zend/tests/ns_022.phpt
2020-02-03 22:52:20 +01:00

20 lines
289 B
PHP

--TEST--
022: Name search priority (first look into import, then into current namespace and then for class)
--FILE--
<?php
namespace a\b\c;
use a\b\c as test;
require "ns_022.inc";
function foo() {
echo __FUNCTION__,"\n";
}
test\foo();
\test::foo();
--EXPECT--
a\b\c\foo
Test::foo