0ec18b4a33
#KT-30136 Fixed
9 lines
98 B
Kotlin
Vendored
9 lines
98 B
Kotlin
Vendored
class Foo {
|
|
fun foo() {
|
|
val a = 1
|
|
<caret>this.a()
|
|
}
|
|
|
|
fun a() {
|
|
}
|
|
} |