summaryrefslogtreecommitdiff
path: root/test/files/run/t627.scala
blob: ecaf1507418bf6e31791746c76fc669e8b698798 (plain) (blame)
1
2
3
4
5
6
object Test {
  def main(args: Array[String]) {
    val s: Seq[Int] = Array(1, 2, 3, 4)
    println(s)
  }
}