summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug937089.js
blob: 09eedbe0307a92f46271ca4af107f87700c2beb9 (plain)
1
2
3
4
5
6
7
8
9
10

function test1() {
  eval("with (arguments) var arguments = 0;");
}
test1();

function test2() {
  eval("eval('with (arguments) var arguments = 0;')");
}
test2();