summaryrefslogtreecommitdiff
path: root/test/files/run/bug1192.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/bug1192.scala')
-rwxr-xr-xtest/files/run/bug1192.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/run/bug1192.scala b/test/files/run/bug1192.scala
new file mode 100755
index 0000000000..9e9173b0dc
--- /dev/null
+++ b/test/files/run/bug1192.scala
@@ -0,0 +1,7 @@
+object Test extends Application {
+ val v1: Array[Array[Int]] = Array(Array(1, 2), Array(3, 4))
+ def f[T](w: Array[Array[T]]) {
+ for (val r <- w) println(r.toString)
+ }
+ f(v1)
+}