Move magic methods tests into their own directory
[hiphop-php.git] / hphp / hack / test / typecheck / yield_send5.php
blobbdddc5d6357df8062e451293cb9fd21d0439240d
1 <?hh // partial
3 function i(int $x): void {}
5 function f(): Generator<bool, string, int> {
6 $x = yield true => 'troo';
7 i($x);
10 function g(): void {
11 $gen = f();
12 $gen->send(1);