1 2 3 4 5 6 7 8 9 10 11 12 13
|
tests/cases/compiler/typeParametersInStaticMethods.ts(2,21): error TS2302: Static members cannot reference class type parameters.
tests/cases/compiler/typeParametersInStaticMethods.ts(2,37): error TS2302: Static members cannot reference class type parameters.
==== tests/cases/compiler/typeParametersInStaticMethods.ts (2 errors) ====
class foo<T> {
static M(x: (x: T) => { x: { y: T } }) {
~
!!! error TS2302: Static members cannot reference class type parameters.
~
!!! error TS2302: Static members cannot reference class type parameters.
}
}
|