blob: f1090f8009731d08bb39a9eb4641ff8e36d324a5 [file] [edit]
function test(array) {
return array.length;
}
noInline(test);
let array = new Array(10);
for (let i = 0; i < testLoopCount; i++) {
if (test(array) !== 10)
throw new Error("bad result");
}