blob: 0a988edbf3bceb6952f2dbb4c3b6f7cb2a9f88f2 [file] [log] [blame]
var res;
var x = 0;
function f() {
x = {x: 1, f: function() { res = this.x; }};
with(x) {
g = function() {
eval("");
f();
}
g();
}
}
f();
assertEq(res, 1);