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