mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
12 lines
122 B
Kotlin
Vendored
12 lines
122 B
Kotlin
Vendored
fun foo() {
|
|
val a = A()
|
|
a.f1(f2())<caret>
|
|
}
|
|
|
|
class A {
|
|
fun f1(): Int = 1
|
|
}
|
|
|
|
fun f2() {}
|
|
|
|
// EXISTS: f1(), f2() |