aboutsummaryrefslogtreecommitdiff
path: root/tests/run/correct-bind.scala
blob: 9f45012bfa21aaed4250b046a02fab2b99d61e70 (plain) (blame)
1
2
3
4
object Test extends dotty.runtime.LegacyApp {
  val Array(who, what: _*) = "first second third" split (" ")
  println(what)
}