global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / stack_overflow_variadic_capture.php
blob94194b3532afd0eaa6d64e0d01771fdeb275e181
1 <?hh
3 function asd($x, $y, ...$z) {
4 asd($x, $y, $x + $y, $y + $x, "asd");
7 asd(1, 2);