blob: fb00b9be563830954765dccd1a101a4d3c169105 [file] [log] [blame]
ggaren@apple.com961dc372015-09-04 02:39:20 +00001function test() {
2
3class foo {};
4class bar { static name() {} };
5return foo.name === "foo" &&
6 typeof bar.name === "function";
7
8}
9
10if (!test())
11 throw new Error("Test failed");
12