xref: /PHP-5.5/Zend/tests/ns_065.phpt (revision 610c7fbe)
1--TEST--
2065: Multiple names in use statement
3--FILE--
4<?php
5use X\Y as test, X\Z as test2;
6
7require "ns_065.inc";
8
9test\foo();
10test2\foo();
11--EXPECT--
12X\Y\foo
13X\Z\foo
14