mirror of
https://github.com/php/php-src.git
synced 2024-12-12 11:23:53 +08:00
19 lines
206 B
PHP
19 lines
206 B
PHP
--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
|