blob: d662d77cb7c22a217afeaae7cd70049b996d8637 [file] [log] [blame]
function test() {
class C extends Function {}
var c = new C("return 'foo';");
return c() === 'foo';
}
if (!test())
throw new Error("Test failed");