summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_006.phpt
blob: 60a4702c0f2facf397cd73631d3bc8a9812c3562 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
006: Run-time name conflict (ns name)
--FILE--
<?php
namespace test\ns1;

class Exception {
}

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