summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/t5506.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/continuations-run/t5506.scala')
-rw-r--r--test/files/continuations-run/t5506.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/continuations-run/t5506.scala b/test/files/continuations-run/t5506.scala
index 4b3703c725..08f64c9db1 100644
--- a/test/files/continuations-run/t5506.scala
+++ b/test/files/continuations-run/t5506.scala
@@ -4,11 +4,11 @@ object Test {
def g: List[Int] @suspendable = List(1,2,3)
-def fp10: List[Int] @suspendable = {
+def fp10: List[Int] @suspendable = {
g.map(x => x)
}
-def fp11: List[Int] @suspendable = {
+def fp11: List[Int] @suspendable = {
val z = g.map(x => x)
z
}
@@ -47,7 +47,7 @@ def main(args: Array[String]) {
println(fp10)
println(fp11)
println(fp12)
-
+
println(fp20)
println(fp21)
println(fp22)