blob: 0acea18cd7386ed22667af6a4bf5c15b275423d3 [file] [log] [blame]
function test() {
class C extends Array {}
var c = new C();
return c.map(Boolean) instanceof C;
}
if (!test())
throw new Error("Test failed");