diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-08-09 16:32:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-09 16:32:29 +0800 |
commit | e8ae2dc90ba62466b3aba212df133f7ad564cbab (patch) | |
tree | 902ded8319f73e6df66a0aa4ba875d2ef50e13d3 /lib/pure/collections | |
parent | cddd4de658fccc9c715cebb6788312f82d5b03a8 (diff) | |
download | Nim-e8ae2dc90ba62466b3aba212df133f7ad564cbab.tar.gz |
bootstrap the compiler with nimPreviewSlimSystem (#20176)
* bootstrap the compiler with nimPreviewSlimSystem * threads
Diffstat (limited to 'lib/pure/collections')
-rw-r--r-- | lib/pure/collections/lists.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/pure/collections/lists.nim b/lib/pure/collections/lists.nim index d1de0ea67..829ec2ccb 100644 --- a/lib/pure/collections/lists.nim +++ b/lib/pure/collections/lists.nim @@ -59,6 +59,9 @@ runnableExamples: import std/private/since +when defined(nimPreviewSlimSystem): + import std/assertions + when not defined(nimHasCursor): {.pragma: cursor.} |