summaryrefslogtreecommitdiff
path: root/test/files/run/t3563.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3563.scala')
-rw-r--r--test/files/run/t3563.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/t3563.scala b/test/files/run/t3563.scala
index 8abbb60803..2a80ef412a 100644
--- a/test/files/run/t3563.scala
+++ b/test/files/run/t3563.scala
@@ -5,17 +5,17 @@
// ticket #3563
object Test {
-
+
def main(args: Array[String]) {
var sum = 0
val setseq = Set(1, 2, 3, 4).toSeq
setseq.map( n => { sum += n; n * n }).head
assert(sum == 10)
-
+
sum = 0
val mapseq = Map(1 -> 1, 2 -> 2, 3 -> 3, 4 -> 4).toSeq
mapseq.map( n => { sum += n._1; (n._1 + n._1, n._2 * n._2) }).head
assert(sum == 10)
}
-
+
}