aboutsummaryrefslogblamecommitdiff
path: root/tests/run/groupby.scala
blob: 9a33ae28968b66baa61e676c37d84fa633e340f8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                                 
// Fixes #3422
object Test {

  def main(args: Array[String]): Unit = {
    val arr = Array.range(0,10)
    val map = arr groupBy (_%2)
    val v1 = map(0)
    val v2 = map(0)
    // this should hold, of course, assuming also that group by returns a regular
    // map implementation, and does nothing fancy - and it should return just a
    // hash map by default.
    assert(v1 eq v2)
  }

}