summaryrefslogtreecommitdiff
path: root/test/pos/exceptions.scala
blob: 4c7ffa35c88f26a5859c0f8c85dc425f8c991c32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.io._;

module test {

  //def error[a](x: String):a = new java.lang.RuntimeException(x) throw;

  def main(): Unit = {
    try {
      try {
        error("hi!");
      } finally {
        System.out.println("ho!")
      }
    } except {
      case ex: IOException => System.out.println("io exception!");
      case ex => System.out.println(ex);
    }
  }

  main();
}