blob: d662d77cb7c22a217afeaae7cd70049b996d8637 [file] [log] [blame]
ggaren@apple.com961dc372015-09-04 02:39:20 +00001function test() {
2
3class C extends Function {}
4var c = new C("return 'foo';");
5return c() === 'foo';
6
7}
8
9if (!test())
10 throw new Error("Test failed");
11