summaryrefslogtreecommitdiff
path: root/test/files/continuations-neg/lazy.scala
blob: 3c8169dd4643469403589581110d48d46b5ef46a (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()
    }
  }

}