aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t6948.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t6948.scala')
-rw-r--r--tests/pending/pos/t6948.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/pending/pos/t6948.scala b/tests/pending/pos/t6948.scala
new file mode 100644
index 000000000..12a1d7eaf
--- /dev/null
+++ b/tests/pending/pos/t6948.scala
@@ -0,0 +1,10 @@
+object t6948 {
+ val rand = new scala.util.Random()
+ def a1 = rand.shuffle(0 to 5)
+ // Tis not to be
+ // def a2 = rand.shuffle(0 until 5)
+ def a3 = rand.shuffle(Vector(1, 2, 3))
+ def a4 = rand.shuffle(scala.collection.Seq(1, 2, 3))
+ def a5 = rand.shuffle(scala.collection.immutable.Seq(1, 2, 3))
+ def a6 = rand.shuffle(scala.collection.mutable.Seq(1, 2, 3))
+}