TypeScript/tests/cases/compiler/nestedThisContainer.ts

14 lines
177 B
TypeScript
Raw Normal View History

// @noImplicitThis:true
type Foo = any;
const foo: Foo = {};
foo.bar = function () {
const self: Foo = this;
};
foo.zab = (function () {
const self: Foo = this;
});