summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug714614.js
blob: fd01dce56149873a1082cbd3b6a2a57447b3264e (plain)
1
2
3
4
5
function testForVarInWith(foo, foo) {
  return eval("with ({}) { for (var x = 0; x < 5; x++); } (function() { return delete x; })");
}
f = testForVarInWith()();