New inference: improved error message for unresolved type
[hiphop-php.git] / hphp / hack / test / typecheck / idx3_5.php
blobefa9718ef60c84f0ab146ceeee9cbdf06ae90e0c
1 <?hh // strict
3 function m(): Map<string, int> {
4 return Map {};
7 function f(): int {
8 $m = m();
9 $x = idx(0, 'a', 0);
10 return $x;