summaryrefslogtreecommitdiff
path: root/test-nsc/files/pos/exceptions.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test-nsc/files/pos/exceptions.scala')
-rwxr-xr-xtest-nsc/files/pos/exceptions.scala20
1 files changed, 20 insertions, 0 deletions
diff --git a/test-nsc/files/pos/exceptions.scala b/test-nsc/files/pos/exceptions.scala
new file mode 100755
index 0000000000..819368244d
--- /dev/null
+++ b/test-nsc/files/pos/exceptions.scala
@@ -0,0 +1,20 @@
+import java.io._;
+
+object Test {
+
+ //def error[a](x: String):a = new java.lang.RuntimeException(x) throw;
+
+ def main(args: Array[String]): Unit = {
+ try {
+ try {
+ System.out.println("hi!");
+ error("xx");
+ } finally {
+ System.out.println("ho!")
+ }
+ } catch {
+ case ex: IOException => System.out.println("io exception!");
+ case ex => System.out.println(ex);
+ }
+ }
+}