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