We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d55ea54 commit 5797aabCopy full SHA for 5797aab
test/files/run/t5394.scala
@@ -0,0 +1,4 @@
1
+object Test extends App {
2
+ def f[T](l: List[T]): Int = l match { case x :: xs => f(xs) case Nil => 0 }
3
+ f(List.fill(10000)(0))
4
+}
0 commit comments