标签: typescript
class X { } class Y<T extends X> { // Type 'X' is not assignable to type 'T' x: T = new X() }
我觉得我失去了理智。
它必须是明显的东西。
TypeScript 2.6.2
答案 0 :(得分:1)
T extends X
T
X