summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/pending/continuations-pos/t3620.scala73
1 files changed, 73 insertions, 0 deletions
diff --git a/test/pending/continuations-pos/t3620.scala b/test/pending/continuations-pos/t3620.scala
new file mode 100644
index 0000000000..8496ae2858
--- /dev/null
+++ b/test/pending/continuations-pos/t3620.scala
@@ -0,0 +1,73 @@
+import scala.collection.mutable.HashMap
+import scala.util.continuations._
+
+object Test extends Application {
+
+ class Store[K,V] {
+
+ trait Waiting {
+ def key: K
+ def inform(value: V): Unit
+ }
+
+ private val map = new HashMap[K, V]
+ private var waiting: List[Waiting] = Nil
+
+ def waitFor(k: K, f: (V => Unit)) {
+ map.get(k) match {
+ case Some(v) => f(v)
+ case None => {
+ val w = new Waiting {
+ def key = k
+ def inform(v: V) = f(v)
+ }
+ waiting = w :: waiting
+ }
+ }
+ }
+
+
+ def add(key: K, value: V) {
+ map(key) = value
+ val p = waiting.partition(_.key == key)
+ waiting = p._2
+ p._1.foreach(_.inform(value))
+ }
+
+ def required(key: K) = {
+ shift {
+ c: (V => Unit) => {
+ waitFor(key, c)
+ }
+ }
+ }
+
+ def option(key: Option[K]) = {
+ shift {
+ c: (Option[V] => Unit) => {
+ key match {
+ case Some(key) => waitFor(key, (v: V) => c(Some(v)))
+ case None => c(None)
+ }
+
+ }
+ }
+ }
+
+ }
+
+ val store = new Store[String, Int]
+
+ def test(p: Option[String]): Unit = {
+ reset {
+ // uncommenting the following two lines makes the compiler happy!
+// val o = store.option(p)
+// println(o)
+ val i = store.option(p).getOrElse(1)
+ println(i)
+ }
+ }
+
+ test(Some("a"))
+
+}