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

function looper(f) {
  for (var i = 0; i < 10; ++i) {
    for (var j = 0; j < 10; ++j) {
      f(10*i + j);
    }
  }
}

function tester() {
  var x = 1;
  looper(function(y) { x = y; });
  return x;
}

appendToActual(tester());


assertEq(actual, expected)