You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
182 B

--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