define_imported.phpt 243 B

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