Scala Buggabot

Results 546 comments of Scala Buggabot

@paulp said: Although I remain convinced this is #3452, that particular transcript is less than convincing as supporting evidence: ``` java.lang.NoSuchMethodException: Test.main([Ljava.lang.String;) ``` Indeed it has no main method.

@gkossakowski said: Alex: I don't understand what your comment tries to say. Can you elaborate?

@gkossakowski said: Viktor: can you give a minimized example that does not depend on akka and can be compiled from command line just with scalac and javac?

@paulp said: I'm pretty sure Alex was stricken by a disease I'm pretty familiar with myself, "I'm expecting a particular failure and there it is!" The problem is that the...

@viktorklang said: Greg: There is no need for Akka to reproduce this

@axel22 said: It means I hastily concluded that this error was unrelated to specialization, thanks to not including the `main` method above.

@gkossakowski said: Viktor: So where's the self-contained example reproducing this problem?

@adriaanm said: // t5976.scala ```scala import scala.runtime.BoxedUnit object japi { @deprecated("Do not use this directly, use subclasses of this", "2.0") class UnitFunctionBridge[-T] extends (T ⇒ BoxedUnit) { override final def...

@paulp said: This will suffice for the missing Future, depending on what level of self-containedness you're after. ```scala class Future[+T](val result: T) { def foreach(x: Foreach[T]): Unit = x each...

@gkossakowski said: Change (T ⇒ BoxedUnit) to AbstractFunction1[T, BoxedUnit] and you are good to go on both 2.9.2 and 2.10.x. The complete example: ```scala // t5976.scala import scala.runtime.BoxedUnit import scala.runtime.AbstractFunction1...