aboutsummaryrefslogtreecommitdiff
path: root/tests/new/conforms.scala
Commit message (Collapse)AuthorAgeFilesLines
* Enable <:< implicits as conversions.Martin Odersky2015-11-031-0/+3
These were disabled before, which means that having evidence of S <:< T did not introduce a usable implicit conversion from S to T. We do do it like scalac: just disable Predef.$conforms. This makes TraversableOnce compile. Fixes #914.