blob: f24f4e2f8d94aed8583d71c58100c58a06694579 [file] [log] [blame]
// "Rename to _" "true"
data class A(val x: String, val y: Int)
fun bar(z: List<A>) {
for ((x<caret>, y) in z) {
y.hashCode()
}
}