php-src/Zend/tests/ns_065.phpt
2020-08-09 22:03:36 +02:00

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