``` ts let o = { f: function () { this./**/ } } ``` Expected: Intellisense shows 'f' in the list Actual: Intellisense shows nothing because `this: any`. Note that this similar code already works: ``` ts let o = { f() { this./**/ } } ```