summaryrefslogtreecommitdiff
path: root/test/pending/run/exc.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/exc.scala')
-rwxr-xr-xtest/pending/run/exc.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/pending/run/exc.scala b/test/pending/run/exc.scala
new file mode 100755
index 0000000000..26f80412c0
--- /dev/null
+++ b/test/pending/run/exc.scala
@@ -0,0 +1,10 @@
+object exc1 extends Application {
+ def foo() = {
+ while (true) {
+ try {
+ } catch {
+ case ex: Exception =>
+ }
+ }
+ }
+}