summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/t3223.scala
blob: 75613fe5c7976bc0d8e2578f1f38ea2e4ca94831 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)))
  }

}