9 lines
110 B
Kotlin
9 lines
110 B
Kotlin
// IS_APPLICABLE: false
|
|
|
|
fun foo(handler: () -> Unit) { }
|
|
|
|
fun bar() {
|
|
foo { <caret>zoo() }
|
|
}
|
|
|
|
fun zoo(){} |