aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/tailcall
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/tailcall')
-rw-r--r--tests/pos/tailcall/i1221.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pos/tailcall/i1221.scala b/tests/pos/tailcall/i1221.scala
index 80dcfdc4b..ba1dbc4a9 100644
--- a/tests/pos/tailcall/i1221.scala
+++ b/tests/pos/tailcall/i1221.scala
@@ -1,6 +1,6 @@
import annotation.tailrec
-object Test{
+object i1221{
final def foo(a: Int): Int = {
if (foo(a - 1) > 0)
foo(a - 1): @tailrec