summaryrefslogtreecommitdiff
path: root/test/files/run/equality.scala
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@typesafe.com>2016-04-22 08:36:11 +0200
committerLukas Rytz <lukas.rytz@typesafe.com>2016-04-22 08:36:11 +0200
commit6863c5c390d59f4ccee4f1b877479128a8682820 (patch)
tree6250c816c8a751dd8db0a92f137ce1856e39fca7 /test/files/run/equality.scala
parent7a24bd6bcde707e25b17e8e1f8dcdea21c51e17a (diff)
parentcce701650143d13c8b292bffd590bf7c8eb532d7 (diff)
downloadscala-6863c5c390d59f4ccee4f1b877479128a8682820.tar.gz
scala-6863c5c390d59f4ccee4f1b877479128a8682820.tar.bz2
scala-6863c5c390d59f4ccee4f1b877479128a8682820.zip
Merge pull request #5110 from sjrd/remove-duplicate-implem-of-hashcodes
Remove the duplicate implem of hash codes for numbers.
Diffstat (limited to 'test/files/run/equality.scala')
-rw-r--r--test/files/run/equality.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/equality.scala b/test/files/run/equality.scala
index ff59898821..2af73691d8 100644
--- a/test/files/run/equality.scala
+++ b/test/files/run/equality.scala
@@ -1,7 +1,7 @@
// a quickly assembled test of equality. Needs work.
object Test
{
- import scala.runtime.ScalaRunTime.hash
+ def hash(x: Any): Int = x.## // forces upcast to Any
def makeFromInt(x: Int) = List(
x.toByte, x.toShort, x.toInt, x.toLong, x.toFloat, x.toDouble, BigInt(x), BigDecimal(x)