diff options
Diffstat (limited to 'tests/collections')
-rw-r--r-- | tests/collections/thashes.nim | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/collections/thashes.nim b/tests/collections/thashes.nim index b9c639414..76b99313c 100644 --- a/tests/collections/thashes.nim +++ b/tests/collections/thashes.nim @@ -72,4 +72,19 @@ block: var t = initTable[int, int]() t[0] = 0 +# Check hashability of all integer types (issue #5429) +block: + let intTables = ( + newTable[int, string](), + newTable[int8, string](), + newTable[int16, string](), + newTable[int32, string](), + newTable[int64, string](), + newTable[uint, string](), + newTable[uint8, string](), + newTable[uint16, string](), + newTable[uint32, string](), + newTable[uint64, string](), + ) + echo "true" |