blob: 2756ec5a36e403616065ad3472b7929354c680a3 [file] [log] [blame]
x = 30;
function foo() {
assertEq(x, 30);
delete x;
y = 20;
Object.defineProperty(this, 'x', {value:10});
assertEq(x, 10);
}
foo();