summaryrefslogblamecommitdiff
path: root/test/files/pos/simple-exceptions.scala
blob: 38f2fc8500020a9f6be31396c551b64461305b63 (plain) (tree)
1
2
3
4
5
6
7
8
9
                           







                                                                        

                                    
       


                                    
                                                               
                                                  


     
import java.io.IOException;

object Test {

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

  def main(args: Array[String]): Unit = {
    try {
      try {
	      Console.println("hi!")
        error("xx")
      }
      finally Console.println("ho!")
    }
    catch {
      case ex: IOException => Console.println("io exception!");
      case ex              => Console.println(ex);
    }
  }
}