summaryrefslogtreecommitdiff
path: root/test/files/run/equality.scala
diff options
context:
space:
mode:
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)