blob: bf68ea1f1432f0977e0e20a483cc55223f048abe [file] [log] [blame]
function foo() {
"use strict";
let a = "hello" + a;
return a;
}
noInline(foo);
for (var i = 0; i < 10000; ++i) {
try {
foo();
} catch (e) {
}
}