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

16 lines
218 B
PHP

--TEST--
Bug #72523 (dtrace issue with reflection (failed test))
--FILE--
<?php
$gen = (new class() {
function a() {
yield "okey";
}
})->a();
var_dump($gen->current());
?>
--EXPECT--
string(4) "okey"