summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/match2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/continuations-run/match2.scala')
-rw-r--r--test/files/continuations-run/match2.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/files/continuations-run/match2.scala b/test/files/continuations-run/match2.scala
index 8d4f04870f..8b0fb946df 100644
--- a/test/files/continuations-run/match2.scala
+++ b/test/files/continuations-run/match2.scala
@@ -4,23 +4,23 @@ import scala.util.continuations._
object Test {
-
+
def test1() = {
val (a, b) = shift { k: (((String,String)) => String) => k("A","B") }
b
}
case class Elem[T,U](a: T, b: U)
-
+
def test2() = {
val Elem(a,b) = shift { k: (Elem[String,String] => String) => k(Elem("A","B")) }
b
}
-
+
def main(args: Array[String]): Any = {
println(reset(test1()))
println(reset(test2()))
}
-
+
} \ No newline at end of file