mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
10 lines
135 B
PHP
Executable File
10 lines
135 B
PHP
Executable File
--TEST--
|
|
004: Name conflict (php name)
|
|
--FILE--
|
|
<?php
|
|
namespace test::ns1;
|
|
|
|
echo get_class(new Exception()),"\n";
|
|
--EXPECT--
|
|
Exception
|