global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / array_apc_sort.php
bloba31d4465aa37c405d6d1d9fc6e6aaffa2c488f5d
1 <?hh
2 apc_store('foo', array("foo"));
3 $a = apc_fetch('foo');
4 var_dump($a);
5 sort(&$a);
6 var_dump($a);