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.
1 parent f5e7467 commit 4a1506fCopy full SHA for 4a1506f
library/src/scala/collection/immutable/LazyListIterable.scala
@@ -294,7 +294,7 @@ final class LazyListIterable[+A] private (lazyState: LazyListIterable.EmptyMarke
294
// when `_head ne Uninitialized`
295
// - `null` if this is an empty lazy list
296
// - `tail: LazyListIterable[A]` otherwise
297
- private[this] var _tail: AnyRef^{this} | Null /* () => LazyListIterable[A] | MidEvaluation.type | LazyListIterable[A] */ =
+ private[this] var _tail: AnyRef^{this} | Null /* () => LazyListIterable[A] | MidEvaluation.type | LazyListIterable[A] | Null */ =
298
if (lazyState eq EmptyMarker) null else lazyState
299
300
private def rawHead: Any = _head
0 commit comments