Handle this typehints
[hiphop-php.git] / hphp / test / quick / setmstr.php
blob52eb9bb847d33c39c7cc08657e99637ae603a5e9
1 <?hh
3 function foo(&$str) {
4 $str[3] = '.';
5 $str .= "\n";
8 $a = "abc";
9 foo($a);
10 var_dump($a);