9 lines
104 B
Plaintext
Vendored
9 lines
104 B
Plaintext
Vendored
// IS_APPLICABLE: true
|
|
fun foo() {
|
|
bar({ it })
|
|
}
|
|
|
|
fun bar(a: (Int) -> Int): Int {
|
|
return a(1)
|
|
}
|