10 lines
146 B
Kotlin
Vendored
10 lines
146 B
Kotlin
Vendored
fun foo() {
|
|
<caret>f1() {
|
|
f2()
|
|
}
|
|
}
|
|
|
|
fun f1(f: () -> Unit) {}
|
|
fun f2() {}
|
|
|
|
// EXISTS: f1(Function0<? extends Unit>), f1: f.invoke() |