comparison: js/src/jit-test/tests/basic/bug714614.js
js/src/jit-test/tests/basic/bug714614.js
- changeset 0
- 6474c204b198
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 |