summaryrefslogtreecommitdiff
path: root/test/files/continuations-neg/function3.scala
blob: c4acc4c2e9a335e5e55c10d900def04eb132c1cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// $Id$

import scala.util.continuations._


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