TypeScript/tests/cases/compiler/thisExpressionInCallExpressionWithTypeArguments.ts

4 lines
81 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
class C {
public foo() { [1,2,3].map<any,any>((x) => { return this; })}
}