aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t1192.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t1192.scala')
-rw-r--r--tests/pending/run/t1192.scala7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/pending/run/t1192.scala b/tests/pending/run/t1192.scala
deleted file mode 100644
index 073d34685..000000000
--- a/tests/pending/run/t1192.scala
+++ /dev/null
@@ -1,7 +0,0 @@
-object Test extends dotty.runtime.LegacyApp {
- val v1: Array[Array[Int]] = Array(Array(1, 2), Array(3, 4))
- def f[T](w: Array[Array[T]]): Unit = {
- for (r <- w) println(r.deep.toString)
- }
- f(v1)
-}