xref: /php-src/Zend/tests/ns_065.phpt (revision 7aacc705)
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?>
12--EXPECT--
13X\Y\foo
14X\Z\foo
15