mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
7aacc705d0
Closes GH-5958
12 lines
185 B
PHP
12 lines
185 B
PHP
--TEST--
|
|
066: Name ambiguity (import name & internal class name)
|
|
--FILE--
|
|
<?php
|
|
include __DIR__ . '/ns_027.inc';
|
|
use Foo\Bar\Foo as stdClass;
|
|
|
|
new stdClass();
|
|
?>
|
|
--EXPECT--
|
|
Foo\Bar\Foo
|