throw_reference.phpt 189 B

123456789101112131415
  1. --TEST--
  2. Throw reference
  3. --FILE--
  4. <?php
  5. $e = new Exception;
  6. $ref =& $e;
  7. throw $e;
  8. ?>
  9. --EXPECTF--
  10. Fatal error: Uncaught Exception in %s:%d
  11. Stack trace:
  12. #0 {main}
  13. thrown in %s on line %d