Disallow ... without type in function typehints
[hiphop-php.git] / hphp / hack / test / typecheck / yield_send2.php
blobacb71311b40049369d532183adf1114c5c20d723
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('blah');