This currently gives me parse error: ``` typescript class A { } function test(x: string | new() => A) { ~~~~~~~~~~ parse error } ``` Though this works: ``` typescript function test(x: new() => A) { } ```