diff options
author | flywind <43030857+xflywind@users.noreply.github.com> | 2022-07-17 15:24:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-17 09:24:40 +0200 |
commit | 01ad0cdc5212a05ac31c968facdc94b732dd48ef (patch) | |
tree | 2ed3220a86e234c0f1db149cc2100012c7864d3e /tests/stdlib | |
parent | 0d8bec695606a65c5916d0da7fcb0a976a4e1f7b (diff) | |
download | Nim-01ad0cdc5212a05ac31c968facdc94b732dd48ef.tar.gz |
defines the `gcRefc` symbol which allows writing specific code for refc (#20009)
* define gcRefc symbols * add comments * add a changelog item * Update changelog.md Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com> * Update changelog.md Co-authored-by: Yardanico <tiberiumk12@gmail.com> Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com> Co-authored-by: Yardanico <tiberiumk12@gmail.com>
Diffstat (limited to 'tests/stdlib')
-rw-r--r-- | tests/stdlib/tstrutils2.nim | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/stdlib/tstrutils2.nim b/tests/stdlib/tstrutils2.nim index 881817f90..a8bf08eed 100644 --- a/tests/stdlib/tstrutils2.nim +++ b/tests/stdlib/tstrutils2.nim @@ -1,10 +1,15 @@ +discard """ + matrix: "--gc:refc; --gc:orc" +""" + import "$lib/.." / compiler/strutils2 block: # setLen var a = "abc" a.setLen 0 a.setLen 3, isInit = false - doAssert a[1] == 'b' + when defined(gcRefc): # bug #19763 + doAssert a[1] == 'b' a.setLen 0 a.setLen 3, isInit = true doAssert a[1] == '\0' |