You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the last line, the type of this is still T; it hasn't been 'filled in'.
src/a.ts(6,7): error TS2345: Argument of type '() => T' is not assignable to parameter of type '(this: string) => string'.
Type 'T' is not assignable to type 'string'.
The text was updated successfully, but these errors were encountered:
TypeScript Version: nightly
Code
Expected behavior:
No error.
this
is always of typestring
.Actual behavior:
In the last line, the type of
this
is stillT
; it hasn't been 'filled in'.The text was updated successfully, but these errors were encountered: