e8d2ba197e
#KT-4639 Fixed
12 lines
122 B
Kotlin
12 lines
122 B
Kotlin
fun foo() {
|
|
val a = A()
|
|
a.f1(f2())<caret>
|
|
}
|
|
|
|
class A {
|
|
fun f1(): Int = 1
|
|
}
|
|
|
|
fun f2() {}
|
|
|
|
// EXISTS: f1(), f2() |