mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
11 lines
285 B
PHP
11 lines
285 B
PHP
--TEST--
|
|
033: Import statement with non-compound name
|
|
--FILE--
|
|
<?php
|
|
use A;
|
|
use \B;
|
|
--EXPECTF--
|
|
Warning: The use statement with non-compound name 'A' has no effect in %sns_033.php on line 2
|
|
|
|
Warning: The use statement with non-compound name 'B' has no effect in %sns_033.php on line 3
|