From d2fd2922e71dddb2c22c1a5b0cf36614cd78e1b4 Mon Sep 17 00:00:00 2001 From: Heather Miller Date: Thu, 5 Jul 2012 16:49:40 +0200 Subject: SI-5981, SI-5979, SI-5973 Closed. Maintenance to Try. --- test/disabled/run/syncchannel.check | 1 + test/disabled/run/syncchannel.scala | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 test/disabled/run/syncchannel.check create mode 100644 test/disabled/run/syncchannel.scala (limited to 'test/disabled/run') diff --git a/test/disabled/run/syncchannel.check b/test/disabled/run/syncchannel.check new file mode 100644 index 0000000000..d81cc0710e --- /dev/null +++ b/test/disabled/run/syncchannel.check @@ -0,0 +1 @@ +42 diff --git a/test/disabled/run/syncchannel.scala b/test/disabled/run/syncchannel.scala new file mode 100644 index 0000000000..66ae47fd0a --- /dev/null +++ b/test/disabled/run/syncchannel.scala @@ -0,0 +1,6 @@ +object Test { + def main(args: Array[String]) { + val c = new scala.concurrent.SyncChannel[Int] + scala.concurrent.ops.par({ c.write(42) }, { println(c.read) }) + } +} -- cgit v1.2.3