global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / setelemloc2.php
blob5772a767f160e644ef655e97afc5dbb30843d815
1 <?hh
3 $keys = array(null, true, false, 0, 100, 0.0, 1238.93498);
5 foreach ($keys as $key) {
6 $a = array();
7 $a[$key] = 123;
8 var_dump($a);
9 var_dump($a[$key]);