blob: b2d3b9868258f987d11c69bb26b60caad5420e5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--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
|