summaryrefslogtreecommitdiff
path: root/test/pos/exceptions.scala
blob: 2ba15efb4a3441b77a440a6465d87c5fc9564293 (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._;

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);
    }
  }

}