summaryrefslogblamecommitdiff
path: root/test/files/continuations-run/t5314-3.scala
blob: c2fe8f6f8733249b84d4fd63da14ec50f01d4cf5 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                 

                                                        


                                        

                                             
                                              
   















                                              
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
}