summary refs log tree commit diff stats
path: root/tests/collections/tcounttable.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/collections/tcounttable.nim')
-rw-r--r--tests/collections/tcounttable.nim19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/collections/tcounttable.nim b/tests/collections/tcounttable.nim
deleted file mode 100644
index ebbb1c8e5..000000000
--- a/tests/collections/tcounttable.nim
+++ /dev/null
@@ -1,19 +0,0 @@
-discard """
-  output: "And we get here"
-"""
-
-# bug #2625
-
-const s_len = 32
-
-import tables
-var substr_counts: CountTable[string] = initCountTable[string]()
-var my_string = "Hello, this is sadly broken for strings over 64 characters. Note that it *does* appear to work for short strings."
-for i in 0..(my_string.len - s_len):
-  let s = my_string[i..i+s_len-1]
-  substr_counts[s] = 1
-  # substr_counts[s] = substr_counts[s] + 1  # Also breaks, + 2 as well, etc.
-  # substr_counts.inc(s)  # This works
-  #echo "Iteration ", i
-
-echo "And we get here"