1--TEST--
2Closures can be unused generators
3--FILE--
4<?php
5(function(){yield;})();
6echo "ok\n";
7?>
8--EXPECT--
9ok
10