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, 0 insertions, 7 deletions
diff --git a/tests/untried/neg/tailrec-2.check b/tests/untried/neg/tailrec-2.check
deleted file mode 100644
index 1daad6922..000000000
--- a/tests/untried/neg/tailrec-2.check
+++ /dev/null
@@ -1,7 +0,0 @@
-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