blob: 37f8790d68ce4eeed927f951fbd7faaad44d3363 [file] [log] [blame]
//@ runBigIntEnabled
function assert(a) {
if (!a)
throw new Error("Bad assertion");
}
function foo(input) {
let a = "";
return "" + input + "";
}
noInline(foo);
for (let i = 0; i < 10000; i++) {
assert(foo(10n) === "10");
}