
| Path : /usr/src/php/Zend/tests/ |
| Current File : //usr/src/php/Zend/tests/ns_008.phpt |
--TEST--
008: __NAMESPACE__ constant and runtime names (ns name)
--FILE--
<?php
namespace test;
class foo {
}
$x = __NAMESPACE__ . "\\foo";
echo get_class(new $x),"\n";
--EXPECT--
test\foo