summaryrefslogtreecommitdiff
path: root/test/files/run/virtpatmat_casting.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/virtpatmat_casting.scala')
-rw-r--r--test/files/run/virtpatmat_casting.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/files/run/virtpatmat_casting.scala b/test/files/run/virtpatmat_casting.scala
index d970abae90..22ac29bc3b 100644
--- a/test/files/run/virtpatmat_casting.scala
+++ b/test/files/run/virtpatmat_casting.scala
@@ -4,5 +4,6 @@ object Test extends App {
// since the :: extractor's argument must be a ::, there has to be a cast before its unapply is invoked
case x :: y :: z :: a :: xs => xs ++ List(x)
case x :: y :: z :: xs => xs ++ List(x)
+ case _ => List(0)
})
}