summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-05-10 07:47:52 -0700
committerPaul Phillips <paulp@improving.org>2012-05-10 07:47:52 -0700
commit391524d99c5caaced0e1aacbb867ff15fca7e756 (patch)
tree21f594af7aa10518664d3d8025c9166992eaa8b4 /test
parent1fdc6cc6addf5f4277a14bdde4f5c82bb669c1ed (diff)
parentebfc16f6709f928a8ba1aa9d40f6bfddec69848b (diff)
downloadscala-391524d99c5caaced0e1aacbb867ff15fca7e756.tar.gz
scala-391524d99c5caaced0e1aacbb867ff15fca7e756.tar.bz2
scala-391524d99c5caaced0e1aacbb867ff15fca7e756.zip
Merge commit 'refs/pull/521/head' into develop
Diffstat (limited to 'test')
-rw-r--r--test/files/run/hashhash.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/run/hashhash.scala b/test/files/run/hashhash.scala
index b9cec99a12..f9fc067398 100644
--- a/test/files/run/hashhash.scala
+++ b/test/files/run/hashhash.scala
@@ -6,5 +6,18 @@ object Test {
/** Just a little sanity check, not to be confused with a unit test. */
List(5, 5.5f, "abc", new AnyRef, ()) foreach confirmSame
List(5.0f, 1.0d, -(5.0f), (-1.0d)) foreach confirmDifferent
+
+ val x = (BigInt(1) << 64).toDouble
+ val y: Any = x
+ val f: Float = x.toFloat
+ val jn: java.lang.Number = x
+ val jf: java.lang.Float = x.toFloat
+ val jd: java.lang.Double = x
+
+ assert(x.## == y.##, ((x, y)))
+ assert(x.## == f.##, ((x, f)))
+ assert(x.## == jn.##, ((x, jn)))
+ assert(x.## == jf.##, ((x, jf)))
+ assert(x.## == jd.##, ((x, jd)))
}
}