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


                                  
 
               


                                           

                                  
           
           
     

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