9 lines
142 B
Plaintext
Vendored
9 lines
142 B
Plaintext
Vendored
// "Change the signature of lambda expression" "true"
|
|
|
|
fun foo(f: Int.(Int, Int) -> Int) {
|
|
|
|
}
|
|
|
|
fun test() {
|
|
foo { i: Int, i1: Int -> 0 }
|
|
} |