blob: 6c44cb33ac1ed6bb7abf13430e9300c248488ee2 [file] [log] [blame]
function foo() {
"foo".replace(/f/g, "");
return "foo".replace(/f/g, 42);
}
noInline(foo);
let result;
for (let i = 0; i < 10000; i++) {
result = foo();
if (result !== "42oo")
throw new Error("Error: bad result: " + result);
}