summaryrefslogtreecommitdiff
path: root/test/files/pos/t6600.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fix for SI-6600, regression with ScalaNumber.Paul Phillips2012-11-021-0/+8
Not much in the end; I divided ScalaNumericConversions into two traits such that the ScalaNumericAnyConversions can be used in value classes, and ScalaNumericConversions can override methods in ScalaNumber (since one trait cannot do both those things.) The fact that ScalaNumber is privileged for equality but a) extends java.lang.Number and therefore b) cannot be a value class is something we will want to revisit real soon.