DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-1 / tests / cases / compiler / typeParameterWithInvalidConstraintType.ts
123456789
class A<T extends T> { foo() { var x: T; var a = x.foo(); var b = new x(123); var c = x[1]; var d = x(); } }