global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / arraypairref.php
blob6cdd29e89cfb082fdf4e364287c6ea9072851ff8
1 <?php
2 $x = null;
3 $y = array(&$x[0]);
4 $y[0] = 2;
5 var_dump($x);