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

14 lines
174 B
Kotlin
Vendored

// PROBLEM: none
class Some {
operator fun invoke() {}
}
class Other {
fun foo() {
val a = Some()
<caret>this.a()
a()
}
fun a() {}
}