summaryrefslogtreecommitdiff
path: root/test/files/jvm/t2359.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/t2359.scala')
-rw-r--r--test/files/jvm/t2359.scala21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/files/jvm/t2359.scala b/test/files/jvm/t2359.scala
deleted file mode 100644
index 1b4d5e0a27..0000000000
--- a/test/files/jvm/t2359.scala
+++ /dev/null
@@ -1,21 +0,0 @@
-import scala.actors.Futures._
-
-object Test {
- def main(args: Array[String]) {
- val x = future {
- System.out.println(1)
- future {
- System.out.println(2)
- future {
- System.out.println(3)
- future {
- System.out.println(4)
- future {
- System.out.println(5)
- }()
- }()
- }()
- }()
- }()
- }
-}