summaryrefslogtreecommitdiff
path: root/Zend/tests/generators/generator_closure_unused.phpt
blob: 6466c4c2e96d86440df33342cfc323f69a766d78 (plain)
1
2
3
4
5
6
7
8
9
--TEST--
Closures can be unused generators
--FILE--
<?php
(function(){yield;})();
echo "ok\n";
?>
--EXPECT--
ok