ns_033.phpt 288 B

1234567891011
  1. --TEST--
  2. 033: Import statement with non-compound name
  3. --FILE--
  4. <?php
  5. use A;
  6. use \B;
  7. ?>
  8. --EXPECTF--
  9. Warning: The use statement with non-compound name 'A' has no effect in %sns_033.php on line 2
  10. Warning: The use statement with non-compound name 'B' has no effect in %sns_033.php on line 3