blob: aec34e60fdafa1ade426906c2feafa294fbbc4f4 [file] [log] [blame]
function test() {
return Reflect.construct(function(a, b, c) {
this.qux = a + b + c;
}, ["foo", "bar", "baz"]).qux === "foobarbaz";
}
if (!test())
throw new Error("Test failed");