summaryrefslogtreecommitdiff
path: root/test/files/run/virtpatmat_tailcalls_verifyerror.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/virtpatmat_tailcalls_verifyerror.scala')
-rw-r--r--test/files/run/virtpatmat_tailcalls_verifyerror.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/files/run/virtpatmat_tailcalls_verifyerror.scala b/test/files/run/virtpatmat_tailcalls_verifyerror.scala
new file mode 100644
index 0000000000..5ce91e8dce
--- /dev/null
+++ b/test/files/run/virtpatmat_tailcalls_verifyerror.scala
@@ -0,0 +1,14 @@
+// shouldn't result in a verify error when run...
+object Test extends App {
+ @annotation.tailrec
+ final def test(meh: Boolean): Boolean = {
+ Some("a") match {
+ case x =>
+ x match {
+ case Some(_) => if(meh) test(false) else false
+ case _ => test(false)
+ }
+ }
+ }
+ println(test(true))
+} \ No newline at end of file