Refactor the parsing and processing of configuration options ... just a bit ...
[hiphop-php.git] / hphp / test / slow / array_init / 249.php
blobc7ee061de507fa6eadcf2dd6c44f03bc4261ef38
1 <?php
3 $v = 1;
4 function foo($a) {
5 $arr = array($a, $a++, $a);
6 var_dump($arr);
8 foo($v);