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