summaryrefslogtreecommitdiff
path: root/test/files/run/t3822.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3822.scala')
-rw-r--r--test/files/run/t3822.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/files/run/t3822.scala b/test/files/run/t3822.scala
index c35804035e..eaf0a145d3 100644
--- a/test/files/run/t3822.scala
+++ b/test/files/run/t3822.scala
@@ -1,17 +1,17 @@
import scala.collection.{ mutable, immutable, generic }
import immutable.ListSet
-object Test {
+object Test {
def main(args: Array[String]): Unit = {
val xs = ListSet(-100000 to 100001: _*)
-
+
assert(xs.size == 200002)
assert(xs.sum == 100001)
-
+
val ys = ListSet[Int]()
val ys1 = (1 to 12).grouped(3).foldLeft(ys)(_ ++ _)
val ys2 = (1 to 12).foldLeft(ys)(_ + _)
-
+
assert(ys1 == ys2)
}
}