summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/trycatch1.scala
blob: b00a87d059d560dd532c997f4da3b9b39205e5a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// $Id$

import scala.util.continuations._

object Test {

  def fatal: Int = throw new Exception()
  
  def foo1 = try {
    fatal
    shift((k: Int=>Int) => k(7))
  } catch {
    case ex: Throwable =>
      9
  }

  def foo2 = try {
    shift((k: Int=>Int) => k(7))
    fatal
  } catch {
    case ex: Throwable =>
      9
  }

  def bar1 = try {
    fatal
    7
  } catch {
    case ex: Throwable =>
      shiftUnit0[Int,Int](9) // regular shift causes no-symbol doesn't have owner
  }

  def bar2 = try {
    7
    fatal
  } catch {
    case ex: Throwable =>
      shiftUnit0[Int,Int](9) // regular shift causes no-symbol doesn't have owner
  }

  def main(args: Array[String]): Unit = {
    println(reset { foo1 + 3 })
    println(reset { foo2 + 3 })
    println(reset { bar1 + 3 })
    println(reset { bar2 + 3 })
  }

}