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