aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/tailrec-2.check
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/neg/tailrec-2.check')
-rw-r--r--tests/untried/neg/tailrec-2.check7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/untried/neg/tailrec-2.check b/tests/untried/neg/tailrec-2.check
new file mode 100644
index 000000000..1daad6922
--- /dev/null
+++ b/tests/untried/neg/tailrec-2.check
@@ -0,0 +1,7 @@
+tailrec-2.scala:8: error: could not optimize @tailrec annotated method f: it contains a recursive call targeting a supertype
+ @annotation.tailrec final def f[B >: A](mem: List[B]): List[B] = (null: Super[A]).f(mem)
+ ^
+tailrec-2.scala:9: error: @tailrec annotated method contains no recursive calls
+ @annotation.tailrec final def f1[B >: A](mem: List[B]): List[B] = this.g(mem)
+ ^
+two errors found