summaryrefslogtreecommitdiff
path: root/test/pending/continuations-run/t2864.scala
blob: 291e739332c28e349755b20f9b94a3160add7d2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// $Id$

import scala.util.continuations._



object Test {

   def double[B](n : Int)(k : Int => B) : B = k(n * 2)

   def main(args : Array[String]) {
      reset {
        val result1 = shift(double[Unit](100))
        val result2 = shift(double[Unit](result1))
        println(result2)
      }
   }
}