bug43344_11.phpt 313 B

123456789101112131415
  1. --TEST--
  2. Bug #43344.11 (Wrong error message for undefined namespace constant)
  3. --FILE--
  4. <?php
  5. function f($a=namespace\bar) {
  6. return $a;
  7. }
  8. echo f()."\n";
  9. ?>
  10. --EXPECTF--
  11. Fatal error: Uncaught Error: Undefined constant "bar" in %s:%d
  12. Stack trace:
  13. #0 %s(%d): f()
  14. #1 {main}
  15. thrown in %sbug43344_11.php on line %d