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