Sign in
webkit
/
WebKit
/
49c45f529348e27f11122daecbee33e4fa730919
/
.
/
JSTests
/
stress
/
bigint-constant-fold-to-numeric.js
blob: 97ee7c159b172ecfc2f2852ba0af5f52a899a271 [
file
] [
log
] [
blame
]
//@ runDefault("--useConcurrentJIT=0")
function
foo
()
{
let x
=
10000000000n
for
(
let i
=
0
;
i
<=
100000
;
i
++)
{
let a0
=
[];
a0
[
x
++];
x
=
0
;
}
}
foo
();
foo
();