TypeScript/tests/cases/compiler/noImplicitThisObjectLiterals.ts
2016-04-29 16:42:51 -07:00

11 lines
223 B
TypeScript

// @noImplicitThis: true
let o = {
d: this, // error, this: any
m() {
return this.d.length; // error, this: any
},
f: function() {
return this.d.length; // error, this: any
}
}