TypeScript/tests/cases/compiler/thisExpressionInCallExpressionWithTypeArguments.ts
2014-07-12 17:30:19 -07:00

4 lines
81 B
TypeScript

class C {
public foo() { [1,2,3].map<any,any>((x) => { return this; })}
}