You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Restore default implementation of ClassTag.apply in 2.12.x
- Whitelist the change to add a concrete implementation of toList
in IndexedSeqOptimized.
I tested the latter change for potential breakage with:
```
object Test {
def main(args: Array[String]) {
def s = new collection.immutable.WrappedString("")
s.toList
(s: collection.IndexedSeqOptimized[Char, Any]).toList
(s: collection.GenTraversableOnce[Char]).toList
}
}
```
```
$ qscalac sandbox/test.scala && scala-launch 2.12.0 Test
$ scalac-launch 2.12.0 sandbox/test.scala && qscala Test
```
0 commit comments