mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
13 lines
182 B
PHP
Executable File
13 lines
182 B
PHP
Executable File
--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
|