blob: 2bc3d07bc3c10caf022b27003b215d48b4a6f9c3 [file] [log] [blame]
function test() {
var baz = false;
class C {
get foo() { return "foo"; }
set bar(x) { baz = x; }
}
new C().bar = true;
return new C().foo === "foo" && baz;
}
if (!test())
throw new Error("Test failed");