if all properties of one instance of a data class ...
# announcements
q
if all properties of one instance of a data class
instance1
equal (== results in true) all properties of another instance of the same data class
instance2
, shouldn't
instance1 == instance2
result in true? or does it do referential equality in the generated
.equals()
?