summaryrefslogblamecommitdiff
path: root/test/files/continuations-neg/lazy.scala
blob: 3c8169dd4643469403589581110d48d46b5ef46a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



                                 
               





                                           
           



     
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()
    }
  }

}