aboutsummaryrefslogtreecommitdiff
path: root/tests/run/generic/SearchResult.scala
Commit message (Collapse)AuthorAgeFilesLines
* Change enumeration members.Martin Odersky2017-04-041-1/+2
| | | | | | | | | | | | | 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-041-1/+1
| | | | These are now implemented in scala.runtime.
* Adapt generic tests to model modified enum values schemeMartin Odersky2017-04-041-6/+10
|
* Add to test caseMartin Odersky2017-02-081-4/+5
|
* ADT and Serialization testMartin Odersky2017-02-081-0/+63
The test exercises all the improvements made in previous commits of this branch.