Handle this typehints
[hiphop-php.git] / hphp / test / quick / list-assign-ref-param.php
blob9f69cc1a77df674099df1c01db5207652227f8d2
1 <?hh
4 function g(&$x) {
5 var_dump($x);
8 error_reporting(-1);
9 $b = array(20);
10 g(list($a) = $GLOBALS['b']);
11 g(list($a) = $b);