summaryrefslogtreecommitdiff
path: root/test/files/continuations-neg/lazy.scala
blob: dffc57ffa0534b1aadbff33c8c8c6800a367c29b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import scala.util.continuations._

object Test {

  def foo = {
    lazy val x = shift((k:Unit=>Unit)=>k())
    println(x)
  }

  def main(args: Array[String]) {
    reset {
      foo
    }
  }

}