summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@typesafe.com>2014-07-20 23:12:48 +0200
committerLukas Rytz <lukas.rytz@typesafe.com>2014-07-20 23:12:48 +0200
commitafa96e3be767935cfe128d9365c8c9e04355dfde (patch)
treefa9b18d772ca8104ebc42f7e51ac06cb488cae85 /test
parentabdd570cee5788000724c6d3b89a978c48a7fa39 (diff)
parentc7cc1a803764b4d26dd23d2baf34a27a3a40f682 (diff)
downloadscala-afa96e3be767935cfe128d9365c8c9e04355dfde.tar.gz
scala-afa96e3be767935cfe128d9365c8c9e04355dfde.tar.bz2
scala-afa96e3be767935cfe128d9365c8c9e04355dfde.zip
Merge pull request #3887 from Ichoran/issue/8738
SI-8738 Regression in range equality
Diffstat (limited to 'test')
-rw-r--r--test/files/run/t8738.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/files/run/t8738.scala b/test/files/run/t8738.scala
new file mode 100644
index 0000000000..6898301db7
--- /dev/null
+++ b/test/files/run/t8738.scala
@@ -0,0 +1,16 @@
+object Test {
+ def check(a: Range, b: Range) = (a == b) == (a.toList == b.toList)
+ def main(args: Array[String]) {
+ val lo = -2 to 2
+ val hi = lo
+ val step = List(-6,-2,-1,1,2,6)
+ for (i <- lo; j <- hi; n <- step; k <- lo; l <- hi; m <- step) {
+ assert(
+ check(i until j by n, k until l by m) &&
+ check(i until j by n, k to l by m) &&
+ check(i to j by n, k until l by m) &&
+ check(i to j by n, k to l by m)
+ )
+ }
+ }
+}