summaryrefslogtreecommitdiff
path: root/test/files/run/t6911.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-6911, regression in generated case class equality.Paul Phillips2013-01-031-0/+24
Caught out by the different semantics of isInstanceOf and pattern matching. trait K { case class CC(name: String) } object Foo extends K object Bar extends K Foo.CC("a") == Bar.CC("a") That expression is supposed to be false, and with this commit it is once again.