summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/infer1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/continuations-run/infer1.scala')
-rw-r--r--test/files/continuations-run/infer1.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/files/continuations-run/infer1.scala b/test/files/continuations-run/infer1.scala
index a6c6c07215..10822508e7 100644
--- a/test/files/continuations-run/infer1.scala
+++ b/test/files/continuations-run/infer1.scala
@@ -4,9 +4,9 @@ import scala.util.continuations._
object Test {
-
+
def test(x: => Int @cpsParam[String,Int]) = 7
-
+
def test2() = {
val x = shift { k: (Int => String) => 9 }
x
@@ -14,9 +14,9 @@ object Test {
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 }
@@ -29,5 +29,5 @@ object Test {
test3 { { test3(0); 2 } }
}
-
+
} \ No newline at end of file