summaryrefslogblamecommitdiff
path: root/test/files/continuations-run/t5314-3.scala
blob: 62c547f5a221e75315df9b246afa4753f5060ea2 (plain) (tree)


























                                                         
import scala.util.continuations._

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

  def p(i: Int): Int @cpsParam[Unit, Any] = { 
    val v= s1 + 3 
    return { println("enter return expr"); v }
  } 

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

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