TypeScript/tests/cases/compiler/thisShadowingErrorSpans.ts
Wesley Wigham cc36e294cc
Add related span pointing to this-shadowing location for implicitly-any this (#28299)
* Add diagnostic pointing to this-shadowing location

* Fix almost-top-level-this case

* Change message on span
2018-11-06 11:27:07 -08:00

10 lines
127 B
TypeScript

// @strict: true
class C {
m() {
this.m();
function f() {
this.m();
}
}
}