1
0
mirror of https://github.com/php/php-src.git synced 2026-04-19 22:11:12 +02:00
Files
archived-php-src/Zend/tests/ns_065.phpt
2008-12-04 20:12:30 +00:00

14 lines
168 B
PHP
Executable File

--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