bug72523.phpt   [plain text]


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