Several XHP autocomplete fixes
[hiphop-php.git] / hphp / hack / test / format / dict.php.exp
blobeff41f40b05b00d14a844d2d24337db96196606e
1 <?hh
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 $dict = dict[];
5 $dict = dict[1 => 1];
6 $dict = dict['1' => '1'];
7 $dict = dict['1' => '1', 2 => 2];
8 $dict = dict[dict[dict[]]];
10 $dict = dict();
11 $dict = dict($dict);
13 foo()->dict();
14 foo()->dict($dict);
16 Foo::dict();
17 Foo::dict($dict);
19 $dict = Dict\count_values($dict);