summaryrefslogblamecommitdiff
path: root/test/files/pos/exceptions.scala
blob: 50d84d3d30e1bd164329f25a6c8298c6f1906a63 (plain) (tree)
1
2
3
4

                 

             













                                                                        
 
         
 
import java.io._;

module test {

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

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

  main();
}