This key must remain retrievable after insertion. Find the bug.
kotlin
data class AccountKey(var email: String)
fun main() {
val key = AccountKey("[email protected]")
val owners = mutableMapOf(key to "Ada")
key.email = "[email protected]"
println(owners[key])
}