define_imported.phpt 254 B

1234567891011121314
  1. --TEST--
  2. defining function with same name as imported should fail
  3. --FILE--
  4. <?php
  5. namespace {
  6. use function foo\bar;
  7. function bar() {}
  8. }
  9. ?>
  10. --EXPECTF--
  11. Fatal error: Cannot declare function bar because the name is already in use in %s on line %d