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