blob: e2be9dc7df20ef7aa4eba713e9b2bd768fecf175 [file] [log] [blame]
var x = 0;
var foo = {
x: 1
};
with( foo) {
x = 2;
}
function tt() {
"use strict";
var foo;
with (foo = 2 ){
x = 3;
}
}