traversable_throwing_exception.phpt 617 B

123456789101112131415161718192021222324252627282930313233
  1. --TEST--
  2. Traversables that throw exceptions are properly handled during argument unpack
  3. --FILE--
  4. <?php
  5. function test(...$args) {
  6. var_dump($args);
  7. }
  8. class Foo implements IteratorAggregate {
  9. public function getIterator() {
  10. throw new Exception('getIterator');
  11. }
  12. }
  13. function gen() {
  14. yield 1;
  15. yield 2;
  16. throw new Exception('gen');
  17. }
  18. try {
  19. test(1, 2, ...new Foo, ...[3, 4]);
  20. } catch (Exception $e) { var_dump($e->getMessage()); }
  21. try {
  22. test(1, 2, ...gen(), ...[3, 4]);
  23. } catch (Exception $e) { var_dump($e->getMessage()); }
  24. ?>
  25. --EXPECT--
  26. string(11) "getIterator"
  27. string(3) "gen"