Example:
data class Product(val id: String, val productName: String)
val (productId, name) = product
The quick-fix renames variables to match the original property names:
val (id, productName) = productThis inspection prepares code for an upcoming Kotlin language feature change where val (x, y) = e syntax will flip from position-based to name-based destructuring. Ensuring variable names match property names now will prevent breaking changes when this language evolution occurs.