summaryrefslogtreecommitdiff
path: root/test/files/run/tuples.scala
blob: 3d0dcf7ac0f1b321eb25253ecaea5f30d186848a (plain) (blame)
1
2
3
4
5
6
7
8
object Test extends Application {
  var xyz: Triple(int, String, boolean) = _
  xyz = Triple(1, "abc", true)
  Console.println(xyz)
  xyz match {
    case Triple(1, "abc", true) => Console.println("OK")
  }
}