summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_003.phpt
blob: 5cc0c6444145cc80ab81ad4b3b1ba89049557b3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
003: Name conflict (ns name)
--FILE--
<?php
namespace test\ns1;

class Exception {
}

echo get_class(new Exception()),"\n";
?>
--EXPECT--
test\ns1\Exception