blob: e43caf1d26340c1c67519838453fc8cb7992724e [file] [log] [blame]
//@ runDefault
"use strict";
let x;
let o = {
set foo(value)
{
x = value;
}
};
Object.freeze(o);
o.foo = 42;
if (x != 42)
throw "Error: bad result: " + x;