You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before this commit, the following class:
class VC(val x: Int) extends AnyVal
resulted in the creation of the method:
def equals(val x$0: Any): Boolean =
x$0 match {
case x$0 @ _: VC => true
case _: Any => false
}
After this commit, we get instead:
def equals(val x$0: Any): Boolean =
x$0 match {
case x$0 @ _: VC => VC.this.a.==(x$0.a)
case _: Any => false
}
0 commit comments