summaryrefslogtreecommitdiff
path: root/test/files/run/syncchannel.scala
diff options
context:
space:
mode:
authorHeather Miller <heather.miller@epfl.ch>2012-07-05 16:49:40 +0200
committerHeather Miller <heather.miller@epfl.ch>2012-07-05 16:49:40 +0200
commitd2fd2922e71dddb2c22c1a5b0cf36614cd78e1b4 (patch)
treecd32e94c9dba1e1990ac8d738a7e2b958e7c0142 /test/files/run/syncchannel.scala
parent171a1d8bc859947d80d4728c251abe330dbe9802 (diff)
downloadscala-d2fd2922e71dddb2c22c1a5b0cf36614cd78e1b4.tar.gz
scala-d2fd2922e71dddb2c22c1a5b0cf36614cd78e1b4.tar.bz2
scala-d2fd2922e71dddb2c22c1a5b0cf36614cd78e1b4.zip
SI-5981, SI-5979, SI-5973 Closed. Maintenance to Try.
Diffstat (limited to 'test/files/run/syncchannel.scala')
-rw-r--r--test/files/run/syncchannel.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/files/run/syncchannel.scala b/test/files/run/syncchannel.scala
deleted file mode 100644
index 66ae47fd0a..0000000000
--- a/test/files/run/syncchannel.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-object Test {
- def main(args: Array[String]) {
- val c = new scala.concurrent.SyncChannel[Int]
- scala.concurrent.ops.par({ c.write(42) }, { println(c.read) })
- }
-}