aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t4558.scala
blob: e7661421dc581215a225206ec164004661b6c2d5 (plain) (tree)
1
2
3
4
5
6





                                              
object Test {
  def main(args: Array[String]): Unit = {
    val xs = Seq(1,2,3).view.groupBy(identity)
    assert(xs.size == 3)
  }
}