Sign in
webkit
/
WebKit
/
7c2d2b06cff0bde1c85f11402729e2b90317522d
/
.
/
JSTests
/
stress
/
big-int-as-key.js
blob: eeae472f70629cabff46aeb661b57917ba221e8b [
file
] [
log
] [
blame
]
//@ runBigIntEnabled
function
assert
(
a
)
{
if
(!
a
)
throw
new
Error
(
"Bad assertion"
);
}
let o
=
{};
let n
=
BigInt
(
0
);
o
[
n
]
=
"foo"
;
assert
(
o
[
n
]
===
"foo"
);
assert
(
o
[
"0"
]
===
"foo"
);