| Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/ |
| Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/ns_027.phpt |
--TEST--
027: Name ambiguity (class name & part of extertnal namespace name)
--FILE--
<?php
require "ns_027.inc";
class Foo {
function __construct() {
echo __CLASS__,"\n";
}
static function Bar() {
echo __CLASS__,"\n";
}
}
$x = new Foo;
Foo::Bar();
$x = new Foo\Bar\Foo;
Foo\Bar\Foo::Bar();
--EXPECT--
Foo
Foo
Foo\Bar\Foo
Foo\Bar\Foo