summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/t5314-2.scala
blob: 8a896dec2ce101efbd2ab2d1b7eddb5de782d36e (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
import scala.util.continuations._

class ReturnRepro { 
  def s1: Int @cps[Any] = shift { k => k(5) } 
  def caller = reset { println(p(3)) }
  def caller2 = reset { println(p2(3)) }
  def caller3 = reset { println(p3(3)) }

  def p(i: Int): Int @cps[Any] = { 
    val v= s1 + 3 
    return v 
  } 

  def p2(i: Int): Int @cps[Any] = {
    val v = s1 + 3
    if (v > 0) {
      println("hi")
      return v
    } else {
      println("hi")
      return 8
    }
  }

  def p3(i: Int): Int @cps[Any] = {
    val v = s1 + 3
    try {
      println("from try")
      return v
    } catch {
      case e: Exception =>
        println("from catch")
        return 7
    }
  }

}

object Test extends App {
  val repro = new ReturnRepro
  repro.caller
  repro.caller2
  repro.caller3
}