1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 16:08:35 +02:00
Files
archived-php-src/Zend/tests/ns_003.phpt
T
2012-10-10 10:27:49 +08:00

13 lines
163 B
PHP

--TEST--
003: Name conflict (ns name)
--FILE--
<?php
namespace test\ns1;
class Exception {
}
echo get_class(new Exception()),"\n";
--EXPECT--
test\ns1\Exception