move HQServerTransportFactory to HQServer.h
[hiphop-php.git] / hphp / test / slow / variable_argument / 21.php
blobe77ed087289fd34b0bf8583fbeccee0785ab14c9
1 <?hh
3 function test($a, $b = 10, ...$more_args) :mixed{
4 var_dump($a);
5 var_dump($b);
6 var_dump(array_merge(vec[$a, $b], $more_args));
9 <<__EntryPoint>>
10 function main_21() :mixed{
11 test(1);
12 test(1, 2);
13 test(1, 2, 3);