diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2023-02-10 05:14:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-09 16:14:39 -0500 |
commit | 51f410e1d5c19e42e97057f0b88e87056b7c43e2 (patch) | |
tree | 45eda4aa8feb0ed8e65652dba33cfb013adb4684 /tests/misc/tunsignedconv.nim | |
parent | be4912681f0da91f01b93f25861021e085ff5846 (diff) | |
download | Nim-51f410e1d5c19e42e97057f0b88e87056b7c43e2.tar.gz |
megatest now checks refc too (#21341)
* megatest now checks refc too * fixes refc
Diffstat (limited to 'tests/misc/tunsignedconv.nim')
-rw-r--r-- | tests/misc/tunsignedconv.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/misc/tunsignedconv.nim b/tests/misc/tunsignedconv.nim index 989f39277..c32f85b4d 100644 --- a/tests/misc/tunsignedconv.nim +++ b/tests/misc/tunsignedconv.nim @@ -66,7 +66,8 @@ let limit = 1'u64 let rangeVar = 0'u64 ..< limit -doAssert repr(rangeVar) == """0 .. 0""", repr(rangeVar) +when not defined(gcRefc): + doAssert repr(rangeVar) == """0 .. 0""", repr(rangeVar) # bug #15210 |