xref: /PHP-8.3/Zend/tests/ns_033.phpt (revision 7aacc705)
1--TEST--
2033: Import statement with non-compound name
3--FILE--
4<?php
5use A;
6use \B;
7?>
8--EXPECTF--
9Warning: The use statement with non-compound name 'A' has no effect in %sns_033.php on line 2
10
11Warning: The use statement with non-compound name 'B' has no effect in %sns_033.php on line 3
12