blob: b03e82c26bf0a6c6fd9a08ffb32188a9f1f83f22 [file] [log] [blame]
// IS_APPLICABLE: true
fun foo() {
bar(name1 = 3) <caret>{ it }
}
fun bar(name1: Int, name2: (Int) -> Int): Int {
return name2(name1)
}