summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/patvirt.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/continuations-run/patvirt.scala')
-rw-r--r--test/files/continuations-run/patvirt.scala32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/files/continuations-run/patvirt.scala b/test/files/continuations-run/patvirt.scala
new file mode 100644
index 0000000000..5b4d312f20
--- /dev/null
+++ b/test/files/continuations-run/patvirt.scala
@@ -0,0 +1,32 @@
+import scala.util.continuations._
+
+object Test {
+ def sh(x1:Int) = shift( (k: Int => Int) => k(k(k(x1))))
+
+ def test(x1: Int) = {
+ val o7 = {
+ val o6 = {
+ val o3 =
+ if (7 == x1) Some(x1)
+ else None
+
+ if (o3.isEmpty) None
+ else Some(sh(x1))
+ }
+ if (o6.isEmpty) {
+ val o5 =
+ if (8 == x1) Some(x1)
+ else None
+
+ if (o5.isEmpty) None
+ else Some(sh(x1))
+ } else o6
+ }
+ o7.get
+ }
+
+ def main(args: Array[String]): Any = {
+ println(reset(1 + test(7)))
+ println(reset(1 + test(8)))
+ }
+}