diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-11-05 22:47:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-05 22:47:12 +0800 |
commit | afd4e22f76bc2234ea660a110376839d726770f7 (patch) | |
tree | f55e31409b9ba418dba7fe3980508e375466471d /tests/arc | |
parent | 10e7f18d01780c500d2cfc8827e6557579fe3236 (diff) | |
download | Nim-afd4e22f76bc2234ea660a110376839d726770f7.tar.gz |
Revert "fix arc global variable issues" (#20764)
* Revert "fix arc global variable issues (#20759)" This reverts commit a3d32a4176539d0829a4e868f4b005a1a71eb7ee. * trigger documentation builds
Diffstat (limited to 'tests/arc')
-rw-r--r-- | tests/arc/tarcmisc.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/arc/tarcmisc.nim b/tests/arc/tarcmisc.nim index 3160d8a4d..567daf982 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 |