blob: 7735848ee7f89ff4cd1fdc17ac8cefc8b152dade [file] [log] [blame]
function test() {
class C {
static method() { return 3; }
}
return typeof C.method === "function"
&& C.method() === 3;
}
if (!test())
throw new Error("Test failed");