aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/tailcall/t1672.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/tailcall/t1672.scala')
-rw-r--r--tests/pending/pos/tailcall/t1672.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/pending/pos/tailcall/t1672.scala b/tests/pending/pos/tailcall/t1672.scala
deleted file mode 100644
index 9be5c6066..000000000
--- a/tests/pending/pos/tailcall/t1672.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-object Test1672 {
- @annotation.tailrec
- def bar(x: Int)(y: Int) : Nothing = {
- try {
- throw new RuntimeException
- } catch {
- case _: Throwable => bar(x)(y)
- }
- }
-}