summaryrefslogtreecommitdiff
path: root/test/pending/run/t2005.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-10-07 17:07:27 +0000
committerPaul Phillips <paulp@improving.org>2009-10-07 17:07:27 +0000
commit6b31849b85532946cb90b2552cb451b58dbd884d (patch)
tree6c343195529c27d43710ae14f77ffc079ccc3ebb /test/pending/run/t2005.scala
parent9f121f57e034a7feb07bad7f67403f3ac75b46d4 (diff)
downloadscala-6b31849b85532946cb90b2552cb451b58dbd884d.tar.gz
scala-6b31849b85532946cb90b2552cb451b58dbd884d.tar.bz2
scala-6b31849b85532946cb90b2552cb451b58dbd884d.zip
Moved a pile of passing tests from pending to f...
Moved a pile of passing tests from pending to files, fixed some untesty tests, and will now close the associated tickets.
Diffstat (limited to 'test/pending/run/t2005.scala')
-rw-r--r--test/pending/run/t2005.scala24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/pending/run/t2005.scala b/test/pending/run/t2005.scala
deleted file mode 100644
index 8e4243a768..0000000000
--- a/test/pending/run/t2005.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-Object Bug {
- def main(args: Array[String]) {
- val a = new Array[Array[Int]](2,2)
- test(a)
- }
- def test[A](t: Array[Array[A]]) {
- val tmp = t(0)
- t(1) = tmp
- }
-}
-java.lang.ArrayStoreException: scala.runtime.BoxedIntArray
- at scala.runtime.BoxedObjectArray.update(BoxedObjectArray.scala:26)
- at Bug$.test(Bug.scala:12)
- at Bug$.main(Bug.scala:7)
- at Bug.main(Bug.scala)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
- at java.lang.reflect.Method.invoke(Method.java:585)
- at scala.tools.nsc.ObjectRunner$$anonfun$run$1.apply(ObjectRunner.scala:75)
- at scala.tools.nsc.ObjectRunner$.withContextClassLoader(ObjectRunner.scala:49)
- at scala.tools.nsc.ObjectRunner$.run(ObjectRunner.scala:74)
- at scala.tools.nsc.MainGenericRunner$.main(MainGenericRunner.scala:154)
- at scala.tools.nsc.MainGenericRunner.main(MainGenericRunner.scala)