mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
9 lines
185 B
Nim
9 lines
185 B
Nim
import unittest
|
|
import hashes
|
|
|
|
suite "hashes":
|
|
suite "hashing":
|
|
test "0.0 and -0.0 should have the same hash value":
|
|
var dummy = 0.0
|
|
check hash(dummy) == hash(-dummy)
|