object Test extends App { def foo() = { while (true) { try { Console.println("foo") } catch { case ex: Exception => Console.println("bar") } } } }