summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1018621.js
blob: e9f530b63d4e0220c20fd1c9c164715398c7b716 (plain)
1
2
3
4
5
6
7
function strictSome(k) {
  "use strict";
  for (var i = 0; i < args.length; i++)
    assertEq(arguments[i], args[i], "wrong argument " + i);
}
args = [8, 6, 7, NaN, undefined, 0.3];
strictSome.call(NaN, 8, 6, 7, NaN, undefined, 0.3);