Files
Nim/tests/table/ttables2.nim
2014-01-13 02:10:03 +01:00

22 lines
450 B
Nim

discard """
output: '''true'''
cmd: "nimrod cc --hints:on $# $#"
"""
import tables
proc TestHashIntInt() =
var tab = initTable[int,int]()
for i in 1..1_000_000:
tab[i] = i
for i in 1..1_000_000:
var x = tab[i]
if x != i : echo "not found ", i
proc run1() = # occupied Memory stays constant, but
for i in 1 .. 50: # aborts at run: 44 on win32 with 3.2GB with out of memory
TestHashIntInt()
run1()
echo "true"