no_global_fallback.phpt 311 B

12345678910111213141516
  1. --TEST--
  2. non-existent imported constants should not be looked up in the global table
  3. --FILE--
  4. <?php
  5. require 'includes/global_baz.php';
  6. use const foo\bar\baz;
  7. var_dump(baz);
  8. ?>
  9. --EXPECTF--
  10. Fatal error: Uncaught Error: Undefined constant 'foo\bar\baz' in %s:%d
  11. Stack trace:
  12. #0 {main}
  13. thrown in %s on line %d