summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/argsub.js
blob: e52992c6b5566e9d237561a43a3bf7dc015ccabc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
actual = '';
expected = 'undefined,undefined,undefined,undefined,undefined,';

function h() {
  for (var i = 0; i < 5; ++i) {
    appendToActual(arguments[100]);
  }
}

h();


assertEq(actual, expected)