12 lines
177 B
Kotlin
Vendored
12 lines
177 B
Kotlin
Vendored
fun foo(f: (String) -> Unit) {}
|
|
fun bar(s: String) {}
|
|
|
|
fun test() {
|
|
foo {
|
|
foo { s ->
|
|
<caret>foo {
|
|
bar(it)
|
|
}
|
|
}
|
|
}
|
|
} |