TypeScript/tests/cases/compiler/blockScopedBindingCaptureThisInFunction.ts

7 lines
170 B
TypeScript

// https://github.com/Microsoft/TypeScript/issues/11038
() => function () {
for (let someKey in {}) {
this.helloWorld();
() => someKey;
}
};