summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/t1820.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/continuations-run/t1820.scala')
-rw-r--r--test/files/continuations-run/t1820.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/files/continuations-run/t1820.scala b/test/files/continuations-run/t1820.scala
deleted file mode 100644
index 893ddab6d1..0000000000
--- a/test/files/continuations-run/t1820.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-// $Id$
-
-import scala.util.continuations._
-
-
-object Test {
- def shifted: Unit @suspendable = shift { (k: Unit => Unit) => () }
- def test1(b: => Boolean) = {
- reset {
- if (b) shifted
- }
- }
- def main(args: Array[String]) = test1(true)
-} \ No newline at end of file