blob: 3a5c96f8bc9697925957203de39449ab07aca972 [file] [log] [blame]
function test() {
function C() {
return x => new.target;
}
return new C()() === C && C()() === undefined;
}
if (!test())
throw new Error("Test failed");