comparison: js/src/jit-test/tests/basic/bug714614.js
js/src/jit-test/tests/basic/bug714614.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 function testForVarInWith(foo, foo) { |
|
2 return eval("with ({}) { for (var x = 0; x < 5; x++); } (function() { return delete x; })"); |
|
3 } |
|
4 f = testForVarInWith()(); |
|
5 |