summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/bug594.check2
-rw-r--r--test/files/run/bug594.scala8
2 files changed, 10 insertions, 0 deletions
diff --git a/test/files/run/bug594.check b/test/files/run/bug594.check
new file mode 100644
index 0000000000..814f4a4229
--- /dev/null
+++ b/test/files/run/bug594.check
@@ -0,0 +1,2 @@
+one
+two
diff --git a/test/files/run/bug594.scala b/test/files/run/bug594.scala
new file mode 100644
index 0000000000..b120f47338
--- /dev/null
+++ b/test/files/run/bug594.scala
@@ -0,0 +1,8 @@
+object Test {
+ def main(args: Array[String]): Unit = {
+ val array = Array("one", "two", "three")
+ val firstTwo: Array[String] = array.subArray(0,2)
+ for(val x <- firstTwo)
+ Console.println(x)
+ }
+}