diff options
author | Arne Döring <arne.doering@gmx.net> | 2019-08-21 19:15:15 +0200 |
---|---|---|
committer | Arne Döring <arne.doering@gmx.net> | 2019-08-21 19:24:36 +0200 |
commit | a562de2d9189706a9b7b9045c8abf9b821549692 (patch) | |
tree | 96f3570d9dfe33f363ac60199431c5ca4b6185cc /tests/arithm | |
parent | 2b2efe3dbe4e48843a923bcb7f55b1ed5d18d8b3 (diff) | |
download | Nim-a562de2d9189706a9b7b9045c8abf9b821549692.tar.gz |
squashed and merged with devel
Diffstat (limited to 'tests/arithm')
-rw-r--r-- | tests/arithm/tarithm.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/arithm/tarithm.nim b/tests/arithm/tarithm.nim index 1150af951..e20b159f8 100644 --- a/tests/arithm/tarithm.nim +++ b/tests/arithm/tarithm.nim @@ -54,6 +54,7 @@ block tcast: crossCheck(uint16, uint16.high + 5'u16) crossCheck(uint32, uint32.high + 5'u32) crossCheck(uint64, 0xFFFFFFFFFFFFFFFF'u64 + 5'u64) + crossCheck(uint64, uint64.high + 5'u64) doAssert $sub1(0'u8) == "255" doAssert $sub1(0'u16) == "65535" |