mirror of
https://github.com/php/php-src.git
synced 2024-12-19 06:50:17 +08:00
19 lines
213 B
PHP
Executable File
19 lines
213 B
PHP
Executable File
--TEST--
|
|
020: Accesing internal namespace function
|
|
--FILE--
|
|
<?php
|
|
namespace X;
|
|
use X as Y;
|
|
function foo() {
|
|
echo __FUNCTION__,"\n";
|
|
}
|
|
foo();
|
|
X::foo();
|
|
Y::foo();
|
|
::X::foo();
|
|
--EXPECT--
|
|
X::foo
|
|
X::foo
|
|
X::foo
|
|
X::foo
|