php-src/Zend/tests/ns_033.phpt

11 lines
285 B
Plaintext
Raw Normal View History

--TEST--
033: Import statement with non-compound name
--FILE--
<?php
2007-11-06 07:29:41 +00:00
use A;
2015-04-06 20:03:04 +00:00
use \B;
--EXPECTF--
2007-11-06 07:29:41 +00:00
Warning: The use statement with non-compound name 'A' has no effect in %sns_033.php on line 2
2008-12-04 20:12:30 +00:00
2015-04-06 20:03:04 +00:00
Warning: The use statement with non-compound name 'B' has no effect in %sns_033.php on line 3