summary refs log tree commit diff stats
path: root/tests/arc
diff options
context:
space:
mode:
authorBung <crc32@qq.com>2022-11-05 19:22:16 +0800
committerGitHub <noreply@github.com>2022-11-05 12:22:16 +0100
commita3d32a4176539d0829a4e868f4b005a1a71eb7ee (patch)
tree5b9daaa8faf149fe47246c9e389f430181f187e1 /tests/arc
parent92e525d2a6b1524b25f62b3b76e9e4df0120ba24 (diff)
downloadNim-a3d32a4176539d0829a4e868f4b005a1a71eb7ee.tar.gz
fix arc global variable issues (#20759)
* temp

* unsure
Diffstat (limited to 'tests/arc')
-rw-r--r--tests/arc/tarcmisc.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/arc/tarcmisc.nim b/tests/arc/tarcmisc.nim
index 567daf982..3160d8a4d 100644
--- a/tests/arc/tarcmisc.nim
+++ b/tests/arc/tarcmisc.nim
@@ -124,7 +124,7 @@ proc test(count: int) =
 test(3)
 
 proc test2(count: int) =
-  #block: #XXX: Fails with block currently
+  block: #XXX: Fails with block currently
     var v {.global.} = newVariable(20)
 
     var count = count - 1