Move tests for yield statement into own directory
[hiphop-php.git] / hphp / hack / test / typecheck / yield / asyncgen8.php
blob1a2932103f289007717a9d193db59b95fb5c52ad
1 <?hh // partial
3 async function f() {
4 yield 1;
7 async function g(): Awaitable<void> {
8 foreach (f() await as $x) {