summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/while1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/continuations-run/while1.scala')
-rw-r--r--test/files/continuations-run/while1.scala22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/files/continuations-run/while1.scala b/test/files/continuations-run/while1.scala
deleted file mode 100644
index fb5dc0079a..0000000000
--- a/test/files/continuations-run/while1.scala
+++ /dev/null
@@ -1,22 +0,0 @@
-// $Id$
-
-import scala.util.continuations._
-
-
-object Test {
-
- def foo(): Int @cps[Unit] = shift { k => println("up"); k(2); println("down") }
-
- def test(): Unit @cps[Unit] = {
- var x = 0
- while (x < 9) {
- x += foo()
- }
- println(x)
- }
-
- def main(args: Array[String]): Any = {
- reset(test())
- }
-
-} \ No newline at end of file