blob: 15eac5c908f81dff7f8a8ecddf77b6eb8e96f813 [file] [log] [blame]
// "Rename to _" "true"
data class A(val x: String, val y: Int)
fun foo(block: (A) -> Unit) {
block(A("", 1))
}
fun bar() {
foo { (x<caret>, y: Int) ->
y.hashCode()
}
}