summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/warp/bug1735157.js
blob: aedbe03f98916e3190bf9c7fbe306dae4bb26dbd (plain)
1
2
3
4
5
const options = ["", {}];
let value = "";
for (let i = 0; i < 10000; i++) {
    value += options[(Math.random() < 0.01) | 0];
}