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