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

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

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

t();



assertEq(actual, expected)