<@U3D0A5GP9> if you don't mind a unnecessary varia...
# announcements
c
@poohbar if you don't mind a unnecessary variable which tags along, and shows up in
toString()
(but not in auto-complete), you could do this:
Copy code
data class Person(
    @Transient private val namePrecursor: String,
    val age: Int,
    val name: String = "${namePrecursor}suffix"
)