aboutsummaryrefslogtreecommitdiff
path: root/tests/pending
diff options
context:
space:
mode:
authorodersky <odersky@gmail.com>2015-06-22 13:09:24 +0200
committerodersky <odersky@gmail.com>2015-06-22 13:09:24 +0200
commitd2c96d02fccef3a82b88ee1ff31253b6ef17f900 (patch)
treeae953d7d2a4e610fc6725102f34b4a3dab55cd80 /tests/pending
parent7c88469bdaf212cfdccce565d6ffe638dd5c1dff (diff)
parent74e9107e25a2b2f50a8d80b3b13136e5ab9eb6e9 (diff)
downloaddotty-d2c96d02fccef3a82b88ee1ff31253b6ef17f900.tar.gz
dotty-d2c96d02fccef3a82b88ee1ff31253b6ef17f900.tar.bz2
dotty-d2c96d02fccef3a82b88ee1ff31253b6ef17f900.zip
Merge pull request #667 from dotty-staging/fix/#646-array-addition
Fix/#646 array addition
Diffstat (limited to 'tests/pending')
-rw-r--r--tests/pending/run/array-addition.check4
-rw-r--r--tests/pending/run/array-addition.scala11
2 files changed, 0 insertions, 15 deletions
diff --git a/tests/pending/run/array-addition.check b/tests/pending/run/array-addition.check
deleted file mode 100644
index 7bfbd9c71..000000000
--- a/tests/pending/run/array-addition.check
+++ /dev/null
@@ -1,4 +0,0 @@
-Array(1, 2, 3, 4)
-Array(1, 2, 3, 4)
-Array(1)
-Array(1)
diff --git a/tests/pending/run/array-addition.scala b/tests/pending/run/array-addition.scala
deleted file mode 100644
index 8def48e85..000000000
--- a/tests/pending/run/array-addition.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-object Test {
- def prettyPrintArray(x: Array[_]) = println("Array(" + x.mkString(", ") + ")")
-
- def main(args: Array[String]): Unit = {
- prettyPrintArray(Array(1,2,3) :+ 4)
- prettyPrintArray(1 +: Array(2,3,4))
- prettyPrintArray(Array() :+ 1)
- prettyPrintArray(1 +: Array())
- }
-}
-