aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphaller <hallerp@gmail.com>2012-11-05 08:34:55 +0100
committerphaller <hallerp@gmail.com>2012-11-05 08:34:55 +0100
commit50c542ae61f4347e0a7003b2ba69000c238f4d2f (patch)
tree47059e56ebb290477b1f14007bceba26408112d4
parent8c544ca6b37268559a862ee54c828e11d2b757d3 (diff)
downloadscala-async-50c542ae61f4347e0a7003b2ba69000c238f4d2f.tar.gz
scala-async-50c542ae61f4347e0a7003b2ba69000c238f4d2f.tar.bz2
scala-async-50c542ae61f4347e0a7003b2ba69000c238f4d2f.zip
Remove obsolete comment in test file
-rw-r--r--test/files/run/block0/AsyncSpec.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/files/run/block0/AsyncSpec.scala b/test/files/run/block0/AsyncSpec.scala
index f311786..446f8ad 100644
--- a/test/files/run/block0/AsyncSpec.scala
+++ b/test/files/run/block0/AsyncSpec.scala
@@ -36,18 +36,6 @@ class Test1Class {
val x2 = await(f2)
x1 + x2
}
-
- // currently fails with: error: not found: value f2
-/*
- def m4(y: Int): Future[Int] = async {
- val f1 = m1(y)
- val f2 = m1(y + 2)
- val x1 = await(f1)
- println("between two awaits")
- val x2 = await(f2)
- x1 + x2
- }
-*/
}