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

function g(a) {
}

function f(y) {
  var q;
  q = function() { appendToActual(y); };
  q();
}

for (var i = 0; i < 5; ++i) {
  f(i);
 }


assertEq(actual, expected)