summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/infer1.scala
blob: 10822508e7d09079e33e9e31870df3840aa0e44b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// $Id$

import scala.util.continuations._


object Test {
 
  def test(x: => Int @cpsParam[String,Int]) = 7
  
  def test2() = {
    val x = shift { k: (Int => String) => 9 }
    x
  }

  def test3(x: => Int @cpsParam[Int,Int]) = 7

  
  def util() = shift { k: (String => String) => "7" }
  
  def main(args: Array[String]): Any = {
    test { shift { k: (Int => String) => 9 } }
    test { shift { k: (Int => String) => 9 }; 2 }
//    test { shift { k: (Int => String) => 9 }; util() }  <-- doesn't work
    test { shift { k: (Int => String) => 9 }; util(); 2 }


    test { shift { k: (Int => String) => 9 }; { test3(0); 2 } }

    test3 { { test3(0); 2 } }

  }
  
}