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