summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/virtpatmat_tailcalls_verifyerror.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/files/run/virtpatmat_tailcalls_verifyerror.scala b/test/files/run/virtpatmat_tailcalls_verifyerror.scala
index 1ee613f09e..5ce91e8dce 100644
--- a/test/files/run/virtpatmat_tailcalls_verifyerror.scala
+++ b/test/files/run/virtpatmat_tailcalls_verifyerror.scala
@@ -5,7 +5,8 @@ object Test extends App {
Some("a") match {
case x =>
x match {
- case _ => if(meh) test(false) else false
+ case Some(_) => if(meh) test(false) else false
+ case _ => test(false)
}
}
}