New inference: improved error message for unresolved type
[hiphop-php.git] / hphp / hack / test / typecheck / null_coalesce_assignment / null_coalesce_assignment_2.php
blob16849851e9821383d9bf177ec972708929bbf0b2
1 <?hh // strict
3 function f(): ?int {
4 return null;
7 function g(): int {
8 $x = f();
9 return $x ??= 0;