aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/virtpatmat_valdef.scala
blob: 77c6adacd3607e4ef66c85989a1e0f3814d4e6d7 (plain) (blame)
1
2
3
4
5
6
object Test extends App {
  // patterns in valdefs...
  // TODO: irrefutability should indicate we don't actually need to test, just deconstruct
  val (modified, result) : (Boolean, String) =  (true, null)
  println("meh"+ (modified, result))
}