blob: 24d9a00974add7f68c81b09099fbc2fab05c582a [file] [log] [blame]
// IS_APPLICABLE: true
fun foo() {
bar(a = 2, b = {
val x = 3
it * x
})
}
fun bar(a: Int, b: (Int) -> Int) {
b(a)
}