We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
case class Foo(a: Int)(b: Int)
In Scala2, the Foo get equals and hashCode based on only a (parameters in first ()). In Dotty, the methods use on a and b.
Foo
equals
hashCode
a
()
b
Is this intended? Is this specified?