sync the repo
[hiphop-php.git] / hphp / hack / test / typecheck / idx3_5.php
blobd7134b4552038cfa37d8977324f40a965e834bc5
1 <?hh
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;