// "Create property 'address2' as constructor parameter" "false" // ACTION: Create property 'address' as constructor parameter // ACTION: Make 'Person' data class // ERROR: Destructuring declaration initializer of type Person must have a 'component3()' function // ERROR: Destructuring declaration initializer of type Person must have a 'component4()' function data class Person(val name: String, val age: Int) fun person(): Person = TODO() fun main(args: Array) { val (name, age, address, address2) = person() }