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

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

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

appendToActual(tester());


assertEq(actual, expected)