summaryrefslogtreecommitdiff
path: root/Zend/tests/generators/generator_closure_unused.phpt
blob: 9acf8f9d936d175cc0d798825bf11e6a725cd3b3 (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