mirror of
https://github.com/php/php-src.git
synced 2024-12-21 16:00:18 +08:00
13 lines
163 B
PHP
13 lines
163 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
|