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