summaryrefslogtreecommitdiff
path: root/test/files/neg/t5455.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t5455.scala')
-rw-r--r--test/files/neg/t5455.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/neg/t5455.scala b/test/files/neg/t5455.scala
index 22d6c442c9..6e54335787 100644
--- a/test/files/neg/t5455.scala
+++ b/test/files/neg/t5455.scala
@@ -1,13 +1,13 @@
trait Test {
def root: Test
-
+
@annotation.tailrec final lazy val bar: Thing[Int] = {
if (this eq root)
Thing(() => System.identityHashCode(bar))
else
root.bar
}
-
+
def f = bar.f()
}