Scala Buggabot

Results 546 comments of Scala Buggabot

@harrah said: Yeah, you're right, sorry. I don't know if I was using a bad build or failed to notice that the error was about 'int'.

@paulp said: For the record, I implemented much of this ticket a while ago and it is available here: https://github.com/paulp/scala/tree/issue/785

Imported From: https://issues.scala-lang.org/browse/SI-7205?orig=1 Reporter: Martin Egri (teknocide) Affected Versions: 2.10.1-RC1, 2.10.1

Imported From: https://issues.scala-lang.org/browse/SI-9677?orig=1 Reporter: Bruno Bieth (mustaghattack) Affected Versions: 2.11.7, 2.11.8

Imported From: https://issues.scala-lang.org/browse/SI-9578?orig=1 Reporter: @adriaanm Affected Versions: 2.10.5, 2.11.7

@adriaanm said: Vaguely related to #9089, but as this was fixed in 2.11.5 and the problem still occurs with breeze compiled with 2.11.7, i conclude it's a separate issue.

Imported From: https://issues.scala-lang.org/browse/SI-10151?orig=1 Reporter: Anton Kulaga (antonkulaga) Affected Versions: 2.12.1

@som-snytt said: Reducedly, ```scala package badindices import scala.collection.mutable import scala.collection.mutable.{ArrayBuffer, ListBuffer} case class DirectedGraph[A](a: A) class Reader { class CoNLLToken( val word:String, val pos:String, val lemma:String, val dep:(Int, String), //...

@som-snytt said: The workaround is to add a unit value after the if/else and avoid the inference.