Scala Buggabot

Results 546 comments of Scala Buggabot

@paulp said: If I opened a PR against the compiler it would only be for the purpose of getting it into the typelevel compiler (since there's no chance of me...

@milessabin said: If you open a PR against scala/scala then I'll commit to getting it across the finishing line. I'm not likely to have time to reimplement this myself anytime...

Imported From: https://issues.scala-lang.org/browse/SI-3889?orig=1 Reporter: Richard Emberson (rmemberson) See #832

@harrah said: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4862448 http://download.oracle.com/javase/6/docs/platform/serialization/spec/serial-arch.html

Richard Emberson (rmemberson) said: As a clarification, Scala does allow anonymous function class automatic serialVersionUID insertion. see: tools/nsc/transform/CleanUp.scala ```scala /* Adds @serializable annotation to anonymous function classes */ case cdef...

@harrah said: Although serializing anonymous classes (including anonymous functions) is only reliable between binaries compiled from the same exact source by the same compiler, it seems from #527 that Scala...

@harrah said: I'll add that I think automatic serialVersionUID generation for anonymous classes is sufficient. Manually specifying it would be unreliable for the reasons above.

Imported From: https://issues.scala-lang.org/browse/SI-10008?orig=1 Reporter: @Atry Affected Versions: 2.10.6, 2.11.8, 2.12.0

@Atry said (edited on Nov 1, 2016 2:22:39 PM UTC): ```scala trait Converter { type To type From } object Converter { type Aux[-From0, +To0] = Converter { type To...