12 lines
136 B
Plaintext
Vendored
12 lines
136 B
Plaintext
Vendored
// IS_APPLICABLE: true
|
|
fun foo() {
|
|
bar(2) {
|
|
val x = 3
|
|
it * x
|
|
}
|
|
}
|
|
|
|
fun bar(a: Int, b: (Int) -> Int) {
|
|
b(a)
|
|
}
|