summaryrefslogtreecommitdiff
path: root/test/files/neg/multi-array.check
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2009-08-27 14:45:35 +0000
committerMartin Odersky <odersky@gmail.com>2009-08-27 14:45:35 +0000
commita04195e63727872f04ad01900a18f6ca9ec5cf2b (patch)
tree48964da67438a04e802a5c2324f0a02f2d22efb7 /test/files/neg/multi-array.check
parent2c39b8b0839a5dfd48dfd073944f7b176cc63f4b (diff)
downloadscala-a04195e63727872f04ad01900a18f6ca9ec5cf2b.tar.gz
scala-a04195e63727872f04ad01900a18f6ca9ec5cf2b.tar.bz2
scala-a04195e63727872f04ad01900a18f6ca9ec5cf2b.zip
added manifests to most parts of standard libra...
added manifests to most parts of standard library which deal with arrays. One test is temporarily disabled, as it shows a deep problem with multi-dimensional arrays (which was present all along).
Diffstat (limited to 'test/files/neg/multi-array.check')
-rw-r--r--test/files/neg/multi-array.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/multi-array.check b/test/files/neg/multi-array.check
index 49ffdefbf7..f8432a76b8 100644
--- a/test/files/neg/multi-array.check
+++ b/test/files/neg/multi-array.check
@@ -1,7 +1,7 @@
multi-array.scala:6: warning: new Array(...) with multiple dimensions has been deprecated; use Array.ofDim(...) instead
val a: Array[Int] = new Array(10, 10)
^
-multi-array.scala:6: error: too many arguments for array constructor: found 2 but array has only 1 dimension(s)
+multi-array.scala:6: error: too many dimensions for array creation
val a: Array[Int] = new Array(10, 10)
^
one warning found