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