blob: 3cc6718cc50e9660d1aeff149f9054952e7d1eea [file] [log] [blame]
var o = {};
function f() {
function g() {
x = 80;
return x;
};
Object.defineProperty(o, "f", {get:g});
var [x] = [];
x = {};
2 + o.f;
print(x);
}
f();