aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/scala/async/run/live/LiveVariablesSpec.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/scala/async/run/live/LiveVariablesSpec.scala')
-rw-r--r--src/test/scala/scala/async/run/live/LiveVariablesSpec.scala26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/scala/scala/async/run/live/LiveVariablesSpec.scala b/src/test/scala/scala/async/run/live/LiveVariablesSpec.scala
index 30646a6..01cf911 100644
--- a/src/test/scala/scala/async/run/live/LiveVariablesSpec.scala
+++ b/src/test/scala/scala/async/run/live/LiveVariablesSpec.scala
@@ -263,4 +263,30 @@ class LiveVariablesSpec {
}
baz()
}
+
+ // https://github.com/scala/async/issues/104
+ @Test def dontNullOutVarsOfTypeNothing_t104(): Unit = {
+ implicit val ec: scala.concurrent.ExecutionContext = null
+ import scala.async.Async._
+ import scala.concurrent.duration.Duration
+ import scala.concurrent.{Await, Future}
+ import scala.concurrent.ExecutionContext.Implicits.global
+ def errorGenerator(randomNum: Double) = {
+ Future {
+ if (randomNum < 0) {
+ throw new IllegalStateException("Random number was too low!")
+ } else {
+ throw new IllegalStateException("Random number was too high!")
+ }
+ }
+ }
+ def randomTimesTwo = async {
+ val num = _root_.scala.math.random
+ if (num < 0 || num > 1) {
+ await(errorGenerator(num))
+ }
+ num * 2
+ }
+ Await.result(randomTimesTwo, TestLatch.DefaultTimeout) // was: NotImplementedError
+ }
}