php-src/Zend/tests/generators/aborted_yield_during_new.phpt
2015-06-20 18:38:59 +02:00

20 lines
218 B
PHP

--TEST--
Aborted yield during object instantiation
--FILE--
<?php
class Foo {
public function __construct() {}
}
function gen() {
$x = new Foo(yield);
}
gen()->rewind();
?>
===DONE===
--EXPECT--
===DONE===