diff options
Diffstat (limited to 'tests/collections')
-rw-r--r-- | tests/collections/ttables.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/collections/ttables.nim b/tests/collections/ttables.nim index a59707865..2a590dd26 100644 --- a/tests/collections/ttables.nim +++ b/tests/collections/ttables.nim @@ -80,7 +80,7 @@ block thashes: # Test with range block: type - R = range[1..10] + R = range[0..9] var t = initTable[R,int]() # causes warning, why? t[1] = 42 # causes warning, why? t[2] = t[1] + 1 |