summaryrefslogtreecommitdiff
path: root/js/src/jit-test/tests/closures/t031.js
blob: 33530045a4aea3c5979e2eaddedfa0965bb3d1c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
actual = '';
expected = '4,4,4,';

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

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

t();
t();
t();


assertEq(actual, expected)