aboutsummaryrefslogtreecommitdiff
path: root/tests/run/generic
Commit message (Collapse)AuthorAgeFilesLines
* Change enumeration members.Martin Odersky2017-04-042-2/+4
| | | | | | | | | | | | | Based on the discussion in #1970, enumeration objects now have three public members: - valueOf: Map[Int, E] - withName: Map[String, E] - values: Iterable[E] Also, the variance of case type parameters is now the same as in the corresponding type parameter of the enum class.
* Link generic test to actual implementations of Enum and EnumValuesMartin Odersky2017-04-043-26/+2
| | | | These are now implemented in scala.runtime.
* Adapt generic tests to model modified enum values schemeMartin Odersky2017-04-045-21/+35
|
* Add to test caseMartin Odersky2017-02-082-5/+20
|
* ADT and Serialization testMartin Odersky2017-02-088-0/+508
The test exercises all the improvements made in previous commits of this branch.