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