summary refs log tree commit diff stats
path: root/tests/int/t1.nim
Commit message (Collapse)AuthorAgeFilesLines
* fix regression with uint constant losing abstract type (#24105)metagn2024-09-141-0/+7
| | | | | | | | fixes #24104, refs #23955 The line `result.typ = dstTyp` added in #23955 changes the type of `result`, which was the type of `n` due to the argument passed to `newIntNodeT`, to the abstract type skipped `dstTyp`. The line is removed to just keep the type as abstract.
* fixes #23954; uint8 > 8 bit at compile-time (#23955)ringabout2024-08-151-0/+5
| | | fixes #23954
* fixes #23947; .uint8 compile-time error (#23948)ringabout2024-08-131-0/+10
| | | fixes #23947
* fixes #14522 #22085 #12700 #23132; no range check for uints (#23930)ringabout2024-08-111-0/+25
| | | | | | | | | | fixes #14522 fixes #22085 fixes #12700 fixes #23132 closes https://github.com/nim-lang/Nim/pull/22343 (succeeded by this PR) completes https://github.com/nim-lang/RFCs/issues/175 follow up https://github.com/nim-lang/Nim/pull/12688
* some test cleanups & category reorganization (#22010)metagn2023-06-061-0/+14
* clean up some test categories * mention exact slice issue * magics into system * move trangechecks into overflow * move tmemory to system * try fix CI * try fix CI * final CI fix