summaryrefslogtreecommitdiff
path: root/test/files/pos/t2171.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t2171.scala')
-rw-r--r--test/files/pos/t2171.scala7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/files/pos/t2171.scala b/test/files/pos/t2171.scala
deleted file mode 100644
index 6c754c76a6..0000000000
--- a/test/files/pos/t2171.scala
+++ /dev/null
@@ -1,7 +0,0 @@
-final object test {
- def logIgnoredException(msg: => String) =
- try 0 catch { case ex => println(msg) }
-
- def main (args: Array[String]): Unit =
- while (true) logIgnoredException ("...")
-}