Sign in
webkit
/
WebKit
/
60c3f717a9141a0f8afd6e8437d26c6404e4424c
/
.
/
JSTests
/
stress
/
bigint-can-be-false-in-boolean-context.js
blob: 67eb1b1a9208ad7c6fe1e80f6c32ebf588c925fd [
file
] [
log
] [
blame
]
function
foo
()
{
let b0
=
0n
.
valueOf
();
function
bar
()
{
let b1
=
b0
;
if
(!
b0
)
{
b1
[
Symbol
.
for
(
'a'
)];
}
}
bar
();
}
for
(
let i
=
0
;
i
<
10000
;
i
++)
{
foo
();
}