summaryrefslogtreecommitdiff
path: root/test/files/run/arrayview.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/arrayview.scala')
-rw-r--r--test/files/run/arrayview.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/arrayview.scala b/test/files/run/arrayview.scala
index 97e840f5e9..42ced5e9ac 100644
--- a/test/files/run/arrayview.scala
+++ b/test/files/run/arrayview.scala
@@ -1,6 +1,6 @@
object Test {
def f = (1 to 100).toArray.view
-
+
def main(args: Array[String]): Unit = {
val xs = (f filter (_ < 50)).reverse.filter(_ % 2 == 0).map(_ / 2).flatMap(x => Array(1, x))
assert(xs.size == 48)