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