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