TypeScript/tests/baselines/reference/thisExpressionInCallExpressionWithTypeArguments.errors.txt
2014-07-12 17:30:19 -07:00

7 lines
329 B
Plaintext

==== tests/cases/compiler/thisExpressionInCallExpressionWithTypeArguments.ts (1 errors) ====
class C {
public foo() { [1,2,3].map<any,any>((x) => { return this; })}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! Supplied parameters do not match any signature of call target.
}