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.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/files/run/bug594.scala b/test/files/run/bug594.scala
deleted file mode 100644
index f923a3cd2a..0000000000
--- a/test/files/run/bug594.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-object Test {
- def main(args: Array[String]): Unit = {
- val array = Array("one", "two", "three")
- val firstTwo: Array[String] = array.slice(0,2)
- for (x <- firstTwo)
- Console.println(x)
- }
-}