Scala Buggabot
Scala Buggabot
Imported From: https://issues.scala-lang.org/browse/SI-8536?orig=1 Reporter: Alan Burlison (alanbur) Affected Versions: 2.11.0
@adriaanm said: Even though we can't add new implicits in 2.11.x, maybe we should still fix the documentation not to refer to missing conversions -- if that's indeed the case?
@Ichoran said: @adriaanm The documentation doesn't say there are conversions. It just says you should use the Java classes. The optimistic may hope that these have conversions, but they're not...
@adriaanm said: Yes, let's make the docs more explicit
Imported From: https://issues.scala-lang.org/browse/SI-4003?orig=1 Reporter: @lexn82
@adriaanm said: let's have a look at the code that does type check after uncurry (scalac -Xprint:uncurry): The vararg is considered a scala.collection.Seq[A[_]], Seq is covariant so that a mutable.Seq[B]
Imported From: https://issues.scala-lang.org/browse/SI-10236?orig=1 Reporter: Daniel Neades (dneades) Affected Versions: 2.12.1
Imported From: https://issues.scala-lang.org/browse/SI-5550?orig=1 Reporter: Shelby Moore III (shelby)
@adriaanm said: sorry we do not have the resources to unearth bug reports from mailing list posts a bug report like this should have a minimal code example that should...
Shelby Moore III (shelby) said (edited on Nov 7, 2012 3:51:56 PM UTC): Hi Adriaan, Here is the code example that does not compile. ```scala class D[-A] (v: A) {...