Hi, I've found an issue at github with the next c...
# announcements
a
Hi, I've found an issue at github with the next code:
Copy code
class A(var i: Int) {
  override fun equals(other: Any?): Boolean = other == null && i==0
}

var g:A? = null
println(A(0) == g) // true
println(A(0) == null) //false
Is it the expected behaviour?