summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/ifelse4.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/continuations-run/ifelse4.scala')
-rw-r--r--test/files/continuations-run/ifelse4.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/continuations-run/ifelse4.scala b/test/files/continuations-run/ifelse4.scala
index a0dbcafc57..46ec15365e 100644
--- a/test/files/continuations-run/ifelse4.scala
+++ b/test/files/continuations-run/ifelse4.scala
@@ -2,7 +2,7 @@ import scala.util.continuations._
object Test {
def sh(x1:Int) = shift( (k: Int => Int) => k(k(k(x1))))
-
+
def testA(x1: Int): Int @cps[Int] = {
sh(x1)
if (x1==42) x1 else sh(x1)
@@ -11,7 +11,7 @@ object Test {
def testB(x1: Int): Int @cps[Int] = {
if (sh(x1)==43) x1 else x1
}
-
+
def testC(x1: Int): Int @cps[Int] = {
sh(x1)
if (sh(x1)==44) x1 else x1