diff options
author | Araq <rumpf_a@web.de> | 2019-09-02 10:27:35 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-09-02 10:27:35 +0200 |
commit | e76568764698be7561501c4809e996f3f1608f74 (patch) | |
tree | 04700154851f27af457836751a8425882b50e97d /tests/arithm | |
parent | e6ec88d4c39c458404061198b2a2f6b86c2caeaf (diff) | |
parent | ad82e65387f39970b0f12cbcb12d8b382236f3da (diff) | |
download | Nim-e76568764698be7561501c4809e996f3f1608f74.tar.gz |
Merge branch 'devel' into uint-range-checks
Diffstat (limited to 'tests/arithm')
-rw-r--r-- | tests/arithm/tarithm.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/arithm/tarithm.nim b/tests/arithm/tarithm.nim index e20b159f8..4625a5ecf 100644 --- a/tests/arithm/tarithm.nim +++ b/tests/arithm/tarithm.nim @@ -143,5 +143,5 @@ block tsubrange: var level: n16 = 1 let maxLevel: n16 = 1 - level = min(level + 2, maxLevel) + level = min(level + 2, maxLevel).n16 doAssert level == 1 |