Sign in
webkit
/
WebKit
/
075931ac30dcae1739e575539dfc139918725298
/
.
/
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
();
}