blob: 61ebf5265f22bd059aff2f1b89bfff0f0ac65f3c [file] [log] [blame]
function assert(a) {
if (!a)
throw new Error("Bad assertion");
}
function foo() {
assert(typeof this === "object")
}
foo.apply(BigInt(1));