blob: 3694b7217de59bef57247017838226e33b78a164 [file] [log] [blame]
function test() {
class C {
constructor() { this.x = 1; }
}
return C.prototype.constructor === C
&& new C().x === 1;
}
if (!test())
throw new Error("Test failed");