summaryrefslogtreecommitdiff
path: root/test/files/run/hashhash.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/hashhash.scala')
-rw-r--r--test/files/run/hashhash.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/hashhash.scala b/test/files/run/hashhash.scala
index f9fc067398..3b9d1479cf 100644
--- a/test/files/run/hashhash.scala
+++ b/test/files/run/hashhash.scala
@@ -1,7 +1,7 @@
object Test {
def confirmSame(x: Any) = assert(x.## == x.hashCode, "%s.## != %s.hashCode".format(x, x))
def confirmDifferent(x: Any) = assert(x.## != x.hashCode, "%s.## == %s.hashCode (but should not)".format(x, x))
-
+
def main(args: Array[String]): Unit = {
/** Just a little sanity check, not to be confused with a unit test. */
List(5, 5.5f, "abc", new AnyRef, ()) foreach confirmSame