summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_065.phpt
blob: d8a0d641feba35031359b11b8c0882a70457f8f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
065: Multiple names in use statement
--FILE--
<?php
use X\Y as test, X\Z as test2;

require "ns_065.inc";

test\foo();
test2\foo();
?>
--EXPECT--
X\Y\foo
X\Z\foo