5e1b219784
This quick-fix is registered for UNUSED_* diagnostic in places where it can be applied (destructured declarations/lambda parameters) #KT-14431 Fixed
9 lines
130 B
Kotlin
Vendored
9 lines
130 B
Kotlin
Vendored
// "Rename to _" "true"
|
|
|
|
data class A(val x: String, val y: Int)
|
|
|
|
fun bar() {
|
|
val (x<caret>, y) = A("", 1)
|
|
y.hashCode()
|
|
}
|