add bitset operations and tests
[hiphop-php.git] / hphp / test / slow / variable_argument / 21.php
blob92dc6b38a346cb1c8dfb9d25d68d3b44318a47f4
1 <?php
3 function test($a, $b = 10) {
4 var_dump($a);
5 var_dump($b);
6 var_dump(func_get_args());
8 test(1);
9 test(1, 2);
10 test(1, 2, 3);