summaryrefslogtreecommitdiff
path: root/Zend/tests/bug69599.phpt
blob: f8e77f2a364084b2b68e1251272c0f67f43cc86f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--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
Stack trace:
#0 [internal function]: crash()
#1 %s(%d): iterator_to_array(Object(Generator))
#2 {main}
  thrown in %s on line %d