summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/ifelse1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/continuations-run/ifelse1.scala')
-rw-r--r--test/files/continuations-run/ifelse1.scala25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/files/continuations-run/ifelse1.scala b/test/files/continuations-run/ifelse1.scala
deleted file mode 100644
index c624b84b75..0000000000
--- a/test/files/continuations-run/ifelse1.scala
+++ /dev/null
@@ -1,25 +0,0 @@
-// $Id$
-
-import scala.util.continuations._
-
-
-object Test {
-
- def test1(x:Int) = if (x <= 7)
- shift { k: (Int=>Int) => k(k(k(x))) }
- else
- x
-
- def test2(x:Int) = if (x <= 7)
- x
- else
- shift { k: (Int=>Int) => k(k(k(x))) }
-
- def main(args: Array[String]): Any = {
- println(reset(1 + test1(7)))
- println(reset(1 + test1(8)))
- println(reset(1 + test2(7)))
- println(reset(1 + test2(8)))
- }
-
-} \ No newline at end of file