summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/function1.scala
blob: 82dfe46c0884dbd2af004dc99fbd9950f15cae42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// $Id$

import scala.util.continuations._


object Test {

  def main(args: Array[String]): Unit = {

    val f = () => shift { k: (Int=>Int) => k(7) }
    val g: () => Int @cps[Int] = f

    println(reset(g()))
  }

}