summaryrefslogtreecommitdiff
path: root/test/files/run/bug594.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/bug594.scala')
-rw-r--r--test/files/run/bug594.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/bug594.scala b/test/files/run/bug594.scala
index 0c3be3d5de..f923a3cd2a 100644
--- a/test/files/run/bug594.scala
+++ b/test/files/run/bug594.scala
@@ -2,7 +2,7 @@ object Test {
def main(args: Array[String]): Unit = {
val array = Array("one", "two", "three")
val firstTwo: Array[String] = array.slice(0,2)
- for(val x <- firstTwo)
+ for (x <- firstTwo)
Console.println(x)
}
}