summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/closures/t035.js
blob: 02acc9a98e8985a25f4b396f3d906c3ccaf02d0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
actual = '';
expected = '4,';

function k(f_arg) { 
  for (var i = 0; i < 5; ++i) {
    f_arg(i);
  }
}

function t(x) {
  k(function (i) { x = i; });
  appendToActual(x);
}

t(1);


assertEq(actual, expected)