0ec18b4a33
#KT-30136 Fixed
14 lines
174 B
Kotlin
Vendored
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() {}
|
|
} |