summaryrefslogtreecommitdiff
path: root/test/pending/jvm/terminateLinked.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/jvm/terminateLinked.scala')
-rw-r--r--test/pending/jvm/terminateLinked.scala24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/pending/jvm/terminateLinked.scala b/test/pending/jvm/terminateLinked.scala
deleted file mode 100644
index 2a3b7fb49e..0000000000
--- a/test/pending/jvm/terminateLinked.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-import scala.actors.Actor
-import Actor._
-
-object Test {
- def main(args: Array[String]) {
- val a = actor {
- for (_ <- 1 to 10)
- receive {
- case b: Actor => link(b)
- }
- throw new Exception
- }
-
- for (_ <- 1 to 10)
- actor {
- a ! self
- react {
- case _ =>
- }
- }
-
- println("Done")
- }
-}