diff options
author | Miran <narimiran@disroot.org> | 2020-03-25 19:15:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-25 19:15:34 +0100 |
commit | 5b55aa52d05ff911d64febc973bed1f0c2d97d25 (patch) | |
tree | 27f204241efaacd7ba138167fe7b81146e155935 /tests/generics/mdotlookup.nim | |
parent | 182d3c16e3b7aac9ed3575dec55e6d9a3d5042c4 (diff) | |
download | Nim-5b55aa52d05ff911d64febc973bed1f0c2d97d25.tar.gz |
fix deprecations and other warnings (#13748)
Diffstat (limited to 'tests/generics/mdotlookup.nim')
-rw-r--r-- | tests/generics/mdotlookup.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/generics/mdotlookup.nim b/tests/generics/mdotlookup.nim index 2984574c2..470fa0a51 100644 --- a/tests/generics/mdotlookup.nim +++ b/tests/generics/mdotlookup.nim @@ -9,7 +9,7 @@ proc foo*(b: any) = import sets -var intset = initSet[int]() +var intset = initHashSet[int]() proc fn*[T](a: T) = if a in intset: echo("true") |