summaryrefslogtreecommitdiff
path: root/test/continuations/run/t3223.scala
blob: 4e510178e6ddc1b3d275e713d55ca7b3ba546421 (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 =>
        val g = (a:Int)=>a
        9
    }
  }

  def main(args: Array[String]) {
    println(reset(foo(0)))
  }

}