Kill getKeyType[IS] and fix a emitVGetProp crash
[hiphop-php.git] / hphp / test / quick / weird_properties.php
blobe936962108618190d8712da5ad6a2ab737014239
1 <?php
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();