Skip to content

Commit 560fa44

Browse files
committed
test: reduce recursive Fibonacci workload
1 parent 0e6d65c commit 560fa44

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/compiler/basic/fib.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function fib(int $n): int
1313

1414
function main()
1515
{
16-
$n = 40;
16+
$n = 30;
1717
if ($n > 100) {
1818
echo "Too big number\n";
1919
exit(1);
@@ -27,4 +27,4 @@ function main()
2727
}
2828
?>
2929
--EXPECT--
30-
102334155
30+
832040

0 commit comments

Comments
 (0)