global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / weird_properties.php
blob47a05217ae42424006ab699902d344fcc8a6af3f
1 <?hh
3 function foo() {
4 $k->paths = array(new stdclass, new stdclass);
5 foreach ($k->paths as $path) {
6 echo $path->{0} . "\n";
7 $z =& $path->{24};
9 echo "done\n";
12 foo();