mirror of
https://github.com/php/php-src.git
synced 2024-12-03 14:54:40 +08:00
7aacc705d0
Closes GH-5958
14 lines
185 B
PHP
14 lines
185 B
PHP
--TEST--
|
|
005: Name conflict (php name in case if ns name exists)
|
|
--FILE--
|
|
<?php
|
|
namespace test\ns1;
|
|
|
|
class Exception {
|
|
}
|
|
|
|
echo get_class(new \Exception()),"\n";
|
|
?>
|
|
--EXPECT--
|
|
Exception
|