summaryrefslogtreecommitdiff
path: root/test/continuations/neg/function2.scala
blob: ae0fda509d667d70b910ff2ad107f0e3841fc501 (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]): Any = {

    val f = () => 7
    val g: () => Int @cps[Int] = f

    println(reset(g()))
  }

}