blob: bd79c22005238080ba7af5f27f228dda933a01e6 [file] [log] [blame]
class testBasic {
constructor() { }
static constructor() { }
}
class testWithExtends extends null {
constructor() { };
static constructor() { };
}
class testOrder {
static constructor() { };
constructor() { };
}
class testOrderWithExtends extends null {
static constructor() { };
constructor() { };
}
if (typeof reportCompare === "function")
reportCompare(0,0,"OK");