summaryrefslogtreecommitdiff
path: root/test/files/run/t5356.scala
Commit message (Collapse)AuthorAgeFilesLines
* Expanded the reach of value classes.Paul Phillips2012-08-291-3/+3
| | | | | | | | | | | Now extending AnyVal: - RichInt, RichDouble, etc. - ArrayOps.ofRef, ofBoolean, etc - StringAdd - StringFormat The rest of it is the changes necessary to enable those.
* Fix for NoSuchMethod in cleanup.Paul Phillips2012-01-041-0/+12
Don't assume that just because someone is calling x.toInt and x <: java.lang.Number, that it's a boxed primitive. Closes SI-5356.