diff options
author | metagn <metagngn@gmail.com> | 2022-10-01 23:35:09 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-01 22:35:09 +0200 |
commit | 0b1650576c6102ce85b4b2c0788b3a5b77154e43 (patch) | |
tree | ef5e7e6d804665be33b92c507a0d07e082634463 /tests/ccgbugs | |
parent | cbd9fee22ac7063c66cc9aa38f20e78df082e387 (diff) | |
download | Nim-0b1650576c6102ce85b4b2c0788b3a5b77154e43.tar.gz |
move widestrs out of system (#20462)
* move widestrs out of system * fix osproc
Diffstat (limited to 'tests/ccgbugs')
-rw-r--r-- | tests/ccgbugs/tcgbug.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/ccgbugs/tcgbug.nim b/tests/ccgbugs/tcgbug.nim index 0fe4b8852..14ed390d4 100644 --- a/tests/ccgbugs/tcgbug.nim +++ b/tests/ccgbugs/tcgbug.nim @@ -24,6 +24,7 @@ q(a) # bug #914 when defined(windows): + import std/widestrs var x = newWideCString("Hello") echo "success" |