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