summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/t3199.scala
blob: 3fd2f1959a5acc45f9d73345166a3cf7f4346f24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import _root_.scala.collection.Seq
import _root_.scala.util.control.Exception
import _root_.scala.util.continuations._

object Test {

  trait AbstractResource[+R <: AnyRef]  {
    def reflect[B] : R @cpsParam[B,Either[Throwable, B]] = shift(acquireFor)
    def acquireFor[B](f :  R => B) : Either[Throwable, B] = {
	      import Exception._
	      catching(List(classOf[Throwable]) : _*) either (f(null.asInstanceOf[R]))
	    }
	  }

	  def main(args: Array[String]) : Unit = {
	     val x = new AbstractResource[String] { }
	     val result = x.acquireFor( x =>  7 )
	     println(result)
	  }
	}