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