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