blob: ce9a7dd847ed2638a8a314ffe2dd9f3fd7b62e21 [file] [log] [blame]
// "Change the signature of lambda expression" "true"
fun foo(f: Int.(Int, Int) -> Int) {
}
fun test() {
foo { i: Int, i1: Int -> 0 }
}