php-src/Zend/tests/bug69599.phpt

22 lines
372 B
Plaintext
Raw Normal View History

2015-05-12 21:08:12 +08:00
--TEST--
Bug #69599: Strange generator+exception+variadic crash
--FILE--
<?php
function crash() {
sin(...[0]);
throw new \Exception();
yield;
}
iterator_to_array(crash());
?>
--EXPECTF--
Fatal error: Uncaught Exception in %s:%d
2015-05-12 21:08:12 +08:00
Stack trace:
#0 [internal function]: crash()
#1 %s(%d): iterator_to_array(Object(Generator))
#2 {main}
thrown in %s on line %d