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/stdlib/t15663.nim | |
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/stdlib/t15663.nim')
-rw-r--r-- | tests/stdlib/t15663.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/stdlib/t15663.nim b/tests/stdlib/t15663.nim index 1ad5677fd..8e8bfd9a8 100644 --- a/tests/stdlib/t15663.nim +++ b/tests/stdlib/t15663.nim @@ -3,5 +3,7 @@ discard """ output: "Test" """ +import std/widestrs + let ws = newWideCString("Test") -echo ws \ No newline at end of file +echo ws |