Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / suspend_operator_err4.php
blobabc265a01c3338be735b6ebc5fd3711d2a39eb61
1 <?hh // strict
3 function g(): int {
4 return 1;
7 coroutine function f(): int {
8 // not ok - argument to suspend is not a call to coroutine
9 $a = suspend g();
10 return 1;