summaryrefslogblamecommitdiff
path: root/test/files/continuations-run/function1.scala
blob: fbd413ed9dae9260214c0d2603d92f9ecafc75fe (plain) (tree)
1
2
3
4
5
6
7
8
9





                                 
 
                                        
    

                                                 
    

                       
  
 
// $Id$

import scala.util.continuations._


object Test {
 
  def main(args: Array[String]): Any = {
    
    val f = () => shift { k: (Int=>Int) => k(7) }
    val g: () => Int @cps[Int] = f
    
    println(reset(g()))
  }
  
}