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

7 lines
109 B
TypeScript

var foo = (dummy) => { };
function test()
{
foo(() =>
function () { return this; }
);
}