From 858a5d513779f4af6f12c0a530bdeceb7a7fd4d9 Mon Sep 17 00:00:00 2001 From: Adriaan Moors Date: Mon, 2 Dec 2013 17:10:35 -0800 Subject: Modularize continuations plugin. The continuations plugin and library will still ship with 2.11 (albeit unsupported). They now reside at https://github.com/scala/scala-continuations. --- test/files/continuations-run/match0.scala | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 test/files/continuations-run/match0.scala (limited to 'test/files/continuations-run/match0.scala') diff --git a/test/files/continuations-run/match0.scala b/test/files/continuations-run/match0.scala deleted file mode 100644 index 8769ed9fcb..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]): Unit = { - println(reset(1 + test(7))) - println(reset(1 + test(8))) - } - -} -- cgit v1.2.3