blob: b64f06b529f783c26e88926248a9b71e97360579 [file] [log] [blame]
// "Change the signature of lambda expression" "true"
// DISABLE-ERRORS
fun f(x: Int, y: Int, z : () -> Int) {
f(1, 2, {x: Int, y: Int<caret> -> x});
}