blob: 06bf1810c66d2af1b0661b1e44597bbd094e1ea0 [file] [log] [blame]
function assert(b) {
if (!b)
throw new Error;
}
function foo(arg) {
return Symbol(arg);
}
noInline(foo);
for (let i = 0; i < 10000; ++i) {
assert(foo(undefined).description === undefined);
}