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