Stefan Zeiger
Stefan Zeiger
This looks like a more general problem with .jvmopts parsing under Windows. Anything other than the first token appears to be ignored. For example, in ``` --add-modules jdk.incubator.vector ``` sbt...
/cc @retronym (who originally discovered the issue)
I'm not familiar with changes in for comprehensions in Dotty so I'll leave that to @adriaanm. But if they require this method then the change is probably inevitable. You can...
Scheduling for RC2 in case we want to revert the `empty()` change.
After trying to remove `empty` I think we should keep it. While it's a bit of a weird method to have on collection instances, we already have it for `Map`...
OK, the specific factory doesn't really work. `newSpecificBuilder` and `fromSpecific` have to use `A @uncheckedVariance`. Both methods are `protected` so it's not too bad, but you wouldn't want them accessible...
Probably and oversight when the old code was ported from 2.12. These methods are not used for anything.
They don't. You always add to in and remove from out. The scaladoc comment explains it quite nicely: > `Queue` is implemented as a pair of `List`s, one containing the...
I was going to change the title to say "compound type" but with actual intersection types in Dotty the problem still exists. In fact, it is worse in Dotty. Only...
For the record, here is an updated version that compiles on 2.13: ```scala import scala.collection.immutable.ArraySeq import scala.reflect.ClassTag object Test { def main(args: Array[String]): Unit = { val test = new...