summaryrefslogtreecommitdiff
path: root/test/files/run/t6827.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6827.scala')
-rw-r--r--test/files/run/t6827.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/files/run/t6827.scala b/test/files/run/t6827.scala
index 7e8918e3dc..8e17af09e2 100644
--- a/test/files/run/t6827.scala
+++ b/test/files/run/t6827.scala
@@ -28,4 +28,7 @@ object Test extends App {
tryit("read -1", 0, -1)
tryit("invalid read 0", 30, 0)
tryit("invalid read -1", 30, -1)
+
+ // okay, see SI-7128
+ "...".toIterator.copyToArray(new Array[Char](0), 0, 0)
}