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