convert ***sort builtins to use inout instead of references
[hiphop-php.git] / hphp / test / slow / locale / 175.php
blobecfc9eab83e5108d2d2f69ed98447eb488af1f1a
1 <?hh
4 <<__EntryPoint>>
5 function main_175() {
6 $a = array(1);
7 $b = array(2);
8 $arr = array($b, $a);
9 print $arr[0][0];
10 asort(inout $arr, SORT_REGULAR);
11 print $arr[0][0];