9 lines
118 B
Kotlin
9 lines
118 B
Kotlin
// IS_APPLICABLE: true
|
|
fun foo() {
|
|
bar<caret>(a = 2, b = { it })
|
|
}
|
|
|
|
fun bar(a: Int, b: (Int) -> Int) {
|
|
b(a)
|
|
}
|