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

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

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

t();


assertEq(actual, expected)