php-8.0.30-src/Zend/tests/generators/aborted_yield_during_new.phpt

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===