diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-06-09 22:00:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-10 07:00:34 +0200 |
commit | 79ded694d7f913755dc7261c7468f04fe421e0b3 (patch) | |
tree | 04828fcedc4e41dc1fbb1199b43d5d0ee0ccede7 /tests | |
parent | 19918ceb2b099440cd3e43b6d7fff313de6a84a2 (diff) | |
download | Nim-79ded694d7f913755dc7261c7468f04fe421e0b3.tar.gz |
avoid re-exporting options from std/wrapnils (#18222)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/stdlib/twrapnils.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/stdlib/twrapnils.nim b/tests/stdlib/twrapnils.nim index af0978762..956204355 100644 --- a/tests/stdlib/twrapnils.nim +++ b/tests/stdlib/twrapnils.nim @@ -1,4 +1,5 @@ import std/wrapnils +from std/options import get, isSome proc checkNotZero(x: float): float = doAssert x != 0 |