php-src/Zend/tests/ns_065.phpt

14 lines
168 B
Plaintext
Raw Normal View History

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