summaryrefslogblamecommitdiff
path: root/test/files/continuations-run/trycatch0.scala
blob: ec39863f3f2fffc79042268cbbd63e5e631f3f4c (plain) (tree)
1
2
3
4
5
6




                                 
  












                                
  




                                         
// $Id$

import scala.util.continuations._

object Test {
  
  def foo = try {
    shift((k: Int=>Int) => k(7))
  } catch {
    case ex =>
      9
  }

  def bar = try {
    7
  } catch {
    case ex =>
    shiftUnit0[Int,Int](9)
  }
  
  def main(args: Array[String]): Unit = {
    println(reset { foo + 3 })
    println(reset { bar + 3 })
  }
}