Move magic methods tests into their own directory
[hiphop-php.git] / hphp / hack / test / typecheck / yield_send4.php
blob0b3d83b41a0e3b2e5bb0f8c9941881290776b58b
1 <?hh // partial
3 function i(?bool $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);