unused_return_value.phpt   [plain text]


--TEST--
There shouldn't be any leaks when the genertor's return value isn't used
--FILE--
<?php

function gen($foo) { yield; }

gen('foo'); // return value not used

?>
===DONE===
--EXPECT--
===DONE===