summaryrefslogblamecommitdiff
path: root/test/files/run/virtpatmat_valdef.scala
blob: f1a9b46cdd8041ffff1cac6dcd0e38e0553b2e0d (plain) (tree)
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))
}