summaryrefslogtreecommitdiff
path: root/test/files/neg/t6526.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-10-17 08:18:50 +0200
committerJason Zaugg <jzaugg@gmail.com>2012-10-17 08:20:06 +0200
commit3440d1bdbda4746756fa2c905aa2cc41eadbe5cf (patch)
tree63259c1c1fc6935efc6eef6cfd7c5cb3daabf417 /test/files/neg/t6526.scala
parent25ad7876a97aafb7a33283843b05023e48cedc55 (diff)
downloadscala-3440d1bdbda4746756fa2c905aa2cc41eadbe5cf.tar.gz
scala-3440d1bdbda4746756fa2c905aa2cc41eadbe5cf.tar.bz2
scala-3440d1bdbda4746756fa2c905aa2cc41eadbe5cf.zip
SI-6526 Tail call elimination should descend deeper.
It wasn't traversing into Select nodes nor into the receiver of a tail call.
Diffstat (limited to 'test/files/neg/t6526.scala')
-rw-r--r--test/files/neg/t6526.scala36
1 files changed, 36 insertions, 0 deletions
diff --git a/test/files/neg/t6526.scala b/test/files/neg/t6526.scala
new file mode 100644
index 0000000000..a34ba570d0
--- /dev/null
+++ b/test/files/neg/t6526.scala
@@ -0,0 +1,36 @@
+import scala.annotation.tailrec
+
+class TailRec {
+ def bar(f: => Any) = ""
+
+ // transform the qualifier of a Select
+ bar {
+ @tailrec def inner(i: Int): Int = 1 + inner(i)
+ inner(0)
+ }.length
+
+ // transform the body of a function
+ () => {
+ @tailrec def inner(i: Int): Int = 1 + inner(i)
+ inner(0)
+ }
+
+ // transform the qualifier of a Select
+ {
+ @tailrec def inner(i: Int): Int = 1 + inner(i)
+ inner(0)
+ ""
+ }.length
+
+ // The receiver of a tail recursive call must itself be transformed
+ object X {
+ @tailrec // okay, all other annotated methods should fail.
+ def foo: Any = {
+ {
+ @tailrec def inner(i: Int): Int = 1 + inner(i)
+ inner(0)
+ this
+ }.foo
+ }
+ }
+}