php-src/Zend/tests/ns_065.phpt

15 lines
171 B
Plaintext
Raw Normal View History

2008-06-08 09:51:42 +00:00
--TEST--
065: Multiple names in use statement
--FILE--
<?php
2008-12-04 20:12:30 +00:00
use X\Y as test, X\Z as test2;
2008-06-08 09:51:42 +00:00
require "ns_065.inc";
2008-12-04 20:12:30 +00:00
test\foo();
test2\foo();
?>
2008-06-08 09:51:42 +00:00
--EXPECT--
2008-12-04 20:12:30 +00:00
X\Y\foo
X\Z\foo