mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
7aacc705d0
Closes GH-5958
14 lines
166 B
PHP
14 lines
166 B
PHP
--TEST--
|
|
003: Name conflict (ns name)
|
|
--FILE--
|
|
<?php
|
|
namespace test\ns1;
|
|
|
|
class Exception {
|
|
}
|
|
|
|
echo get_class(new Exception()),"\n";
|
|
?>
|
|
--EXPECT--
|
|
test\ns1\Exception
|