summary refs log tree commit diff stats
path: root/tests/misc/tunsignedconv.nim
diff options
context:
space:
mode:
authormetagn <metagngn@gmail.com>2022-10-01 10:07:52 +0300
committerGitHub <noreply@github.com>2022-10-01 09:07:52 +0200
commit24b81e9df6d871bd036d5e38efe631489999a4b7 (patch)
treeb5820edda507ab01fc76bc2e6150a667e6d7f06d /tests/misc/tunsignedconv.nim
parent96c5586d030a97d9da2f08b2faacad8d34ebd2e4 (diff)
downloadNim-24b81e9df6d871bd036d5e38efe631489999a4b7.tar.gz
remove hack for deprecated csize in compiler (#20463)
* remove hack for deprecated csize in compiler

* remove test
Diffstat (limited to 'tests/misc/tunsignedconv.nim')
-rw-r--r--tests/misc/tunsignedconv.nim6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/misc/tunsignedconv.nim b/tests/misc/tunsignedconv.nim
index 28c3f9769..989f39277 100644
--- a/tests/misc/tunsignedconv.nim
+++ b/tests/misc/tunsignedconv.nim
@@ -56,11 +56,7 @@ discard $x0
 const x1 = cast[uint](-1)
 discard $(x1,)
 
-when not defined(nimPreviewSlimSystem):
-  # bug #13698
-  let n: csize = 1 # xxx should that be csize_t or is that essential here?
-  doAssert $n.int32 == "1"
-
+# bug #13698
 let n2: csize_t = 1
 doAssert $n2.int32 == "1"