9 lines
107 B
Plaintext
9 lines
107 B
Plaintext
// IS_APPLICABLE: true
|
|
fun foo() {
|
|
bar(2, { it * 3 })
|
|
}
|
|
|
|
fun bar(a: Int, b: (Int) -> Int) {
|
|
b(a)
|
|
}
|