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