summaryrefslogblamecommitdiff
path: root/test/files/continuations-run/t3223.scala
blob: fda61f41ea9c0627879bd4880e3e63ef6f2ae972 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                 
          


                            
                             



                          
  



                                 
 
import scala.util.continuations._
object Test {

  def foo(x:Int) = {
    try { 
      throw new Exception
      shiftUnit0[Int,Int](7)
    } catch {
      case ex: Throwable =>  
        val g = (a:Int)=>a
        9
    }
  }
  
  def main(args: Array[String]) {
    println(reset(foo(0)))
  }

}