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, 0 insertions, 10 deletions
diff --git a/tests/pending/pos/t6948.scala b/tests/pending/pos/t6948.scala
deleted file mode 100644
index 12a1d7eaf..000000000
--- a/tests/pending/pos/t6948.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-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))
-}