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