global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / undefined-index.php
blob75523f381898c98b12357dfd0bb60ae3aa2a8cdf
1 <?hh
3 $arr = array();
4 $a = $arr[123];
5 echo $a;
7 $obj = new stdclass;
8 $a = $obj->flubb;
9 echo $a;