comparison: js/src/jit-test/tests/basic/testBug763950.js
js/src/jit-test/tests/basic/testBug763950.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 (function() { |
|
2 var x; |
|
3 for (let j = 0; j < 1; j = j + 1) |
|
4 x = function() { return j; }; |
|
5 assertEq(x(), 1); |
|
6 })(); |