diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/stdlib/t21251.nim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/stdlib/t21251.nim b/tests/stdlib/t21251.nim new file mode 100644 index 000000000..4402e9b7e --- /dev/null +++ b/tests/stdlib/t21251.nim @@ -0,0 +1,6 @@ +import std / [tables, sets, sharedtables] + +var shared: SharedTable[int, int] +shared.init + +shared[1] = 1 |