blob: 2be5f7d0acdb802b4768c28a417269d71f4e0b36 [file] [log] [blame]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function foo(a) {
return "foo" + a;
}
var result;
for (var i = 0; i < 1000000; ++i)
result = foo("hello");
if (result != "foohello")
throw "Error: bad result: " + result;