aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t3923.scala
blob: 484095a6077ff3a749582d571f4c30c3a76b3125 (plain) (blame)
1
2
3
4
5
6
7
8
object Test {
  def main(args: Array[String]): Unit = {
    assert(collection.mutable.ArraySeq() == Nil)
    assert(collection.mutable.ArraySeq() == Seq())
    assert(Seq() == collection.mutable.ArraySeq())
    assert(Nil == collection.mutable.ArraySeq())
  }
}