mirror of
https://github.com/php/php-src.git
synced 2025-01-10 21:14:37 +08:00
10 lines
135 B
Plaintext
10 lines
135 B
Plaintext
|
--TEST--
|
||
|
004: Name conflict (php name)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
namespace test::ns1;
|
||
|
|
||
|
echo get_class(new Exception()),"\n";
|
||
|
--EXPECT--
|
||
|
Exception
|