We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9870f56 + c3b8e58 commit 2cd0f6bCopy full SHA for 2cd0f6b
library/src/scala/collection/TraversableOnce.scala
@@ -224,7 +224,7 @@ trait TraversableOnce[+A] extends Any with GenTraversableOnce[A] {
224
//avoid the LazyRef as we don't have an @eager object
225
class reducer extends AbstractFunction1[A, Unit] {
226
var first = true
227
- var acc: B = 0.asInstanceOf[B]
+ var acc: B = null.asInstanceOf[B]
228
229
override def apply(x: A): Unit =
230
if (first) {
0 commit comments