exception_005.phpt 233 B

123456789101112131415
  1. --TEST--
  2. Trying to throw exception of an interface
  3. --FILE--
  4. <?php
  5. interface a { }
  6. throw new a();
  7. ?>
  8. --EXPECTF--
  9. Fatal error: Uncaught Error: Cannot instantiate interface a in %s:%d
  10. Stack trace:
  11. #0 {main}
  12. thrown in %s on line %d