js/src/jit-test/tests/basic/bug646968-2.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:0659d585a1f2
1 var x = 5;
2 (let (x = x) assertEq(x, 5));
3 (let (x = eval("x")) assertEq(x, 5));
4 (let (x = function () { with ({}) return x; }) assertEq(x(), 5));

mercurial