summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/t3199.scala
blob: 7b54793e059f5e1106ee39a68b316124b85ae57d (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) 
	  } 
	}