summaryrefslogtreecommitdiff
path: root/test/pending/run/exc2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/exc2.scala')
-rw-r--r--test/pending/run/exc2.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/pending/run/exc2.scala b/test/pending/run/exc2.scala
deleted file mode 100644
index 8adf9b4a37..0000000000
--- a/test/pending/run/exc2.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-object exc2 extends Application {
- def foo() = {
- while (true) {
- try {
- Console.println("foo")
- } catch {
- case ex: Exception =>
- Console.println("bar")
- }
- }
- }
-}