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

branch
TOR_BUG_9701
changeset 15
b8a032363ba2
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