Files
kotlin-fork/idea/testData/inspectionsLocal/explicitThis/functionWithSameNameVariable.kt
T
2019-08-30 12:07:13 +03:00

9 lines
98 B
Kotlin
Vendored

class Foo {
fun foo() {
val a = 1
<caret>this.a()
}
fun a() {
}
}