summaryrefslogtreecommitdiff
path: root/test/pending/run/subarray.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/subarray.scala')
-rw-r--r--test/pending/run/subarray.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/pending/run/subarray.scala b/test/pending/run/subarray.scala
deleted file mode 100644
index b120f47338..0000000000
--- a/test/pending/run/subarray.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.subArray(0,2)
- for(val x <- firstTwo)
- Console.println(x)
- }
-}