mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
7aacc705d0
Closes GH-5958
15 lines
171 B
PHP
15 lines
171 B
PHP
--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
|