blob: fb00b9be563830954765dccd1a101a4d3c169105 [file] [log] [blame]
function test() {
class foo {};
class bar { static name() {} };
return foo.name === "foo" &&
typeof bar.name === "function";
}
if (!test())
throw new Error("Test failed");