xref: /PHP-5.5/Zend/tests/ns_005.phpt (revision 610c7fbe)
1--TEST--
2005: Name conflict (php name in case if ns name exists)
3--FILE--
4<?php
5namespace test\ns1;
6
7class Exception {
8}
9
10echo get_class(new \Exception()),"\n";
11--EXPECT--
12Exception
13