summaryrefslogtreecommitdiff
path: root/test/files/jvm/t2359.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-10-07 23:23:16 +0000
committerPaul Phillips <paulp@improving.org>2009-10-07 23:23:16 +0000
commiteb572091cd5d64feff08283b276664f43e2ea587 (patch)
tree10b13794aafd6536eb45a6bb744039f188e25afb /test/files/jvm/t2359.scala
parent611e5bd1f93bc04d7a699be376b53f3505b9414a (diff)
downloadscala-eb572091cd5d64feff08283b276664f43e2ea587.tar.gz
scala-eb572091cd5d64feff08283b276664f43e2ea587.tar.bz2
scala-eb572091cd5d64feff08283b276664f43e2ea587.zip
Disabling another test trying to unhang the tes...
Disabling another test trying to unhang the test suite.
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)
- }()
- }()
- }()
- }()
- }()
- }
-}