Example:
data class Person(val firstName: String, val lastName: String)
val (first, lastName) = person
The quick-fix converts to full form destructuring:
(val first = firstName, val lastName) = person
This form makes the mapping between variables and properties explicit.