summaryrefslogtreecommitdiff
path: root/test/files/continuations-neg/t1929.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/continuations-neg/t1929.scala')
-rw-r--r--test/files/continuations-neg/t1929.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/files/continuations-neg/t1929.scala b/test/files/continuations-neg/t1929.scala
deleted file mode 100644
index 02eda9170d..0000000000
--- a/test/files/continuations-neg/t1929.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-// $Id$
-
-import scala.util.continuations._
-
-
-object Test {
- def main(args : Array[String]) {
- reset {
- println("up")
- val x = shift((k:Int=>String) => k(8) + k(2))
- println("down " + x)
- val y = shift((k:Int=>String) => k(3))
- println("down2 " + y)
- y + x
- }
- }
-} \ No newline at end of file