Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / void_return2.php
blob29a4d820406be92d08a606f3a98c988f93564c80
1 <?hh
3 function f() {
4 return 1;
7 function g(): void {
8 $x = f();
9 return $x;