blob: 81c719431425089fa4edaa5b2756043b1b5d75b1 [file] [log] [blame]
function foo(a, b, c) {
var res = 0;
for (var b = 0; b < c; b++)
res += a[b];
return res;
}
assertEq(foo([1,2,3], 0, 10), NaN);