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