From 8a85f07da3a469ba88ec9707d621938512095135 Mon Sep 17 00:00:00 2001 From: Aleksandar Pokopec Date: Wed, 17 Feb 2010 12:23:13 +0000 Subject: Test file for last commit. --- test/files/run/arraycopy.scala | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 test/files/run/arraycopy.scala (limited to 'test') diff --git a/test/files/run/arraycopy.scala b/test/files/run/arraycopy.scala new file mode 100644 index 0000000000..bb06200dc7 --- /dev/null +++ b/test/files/run/arraycopy.scala @@ -0,0 +1,31 @@ + + +object Test { + def main(args: Array[String]) { + val a = new Array[Int](10) + val b = new Array[Any](10) + for (i <- 0 until 10) b(i) = i + + Array.copy(b, 3, a, 3, 7) + assert(a.toSeq == List(0, 0, 0, 3, 4, 5, 6, 7, 8, 9)) + } +} + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3