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