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

                 
             
 

                                                                        
                      

           

                                  







                                                                  
 
         
 
import java.io._;

object test {

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

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

  main();
}