diff options
author | Araq <rumpf_a@web.de> | 2019-09-17 10:46:57 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-09-17 15:15:12 +0200 |
commit | ea8a049af3df3db47ba2f894254bfb910356b83f (patch) | |
tree | 40af4ad044dbc7ffebffe3437a6ce6f6b4d27a49 | |
parent | c9f3a8b269ffbe52ee843ba350faf569d99e8106 (diff) | |
download | Nim-ea8a049af3df3db47ba2f894254bfb910356b83f.tar.gz |
fixes the testcase
-rw-r--r-- | tests/vm/tslow_tables.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/vm/tslow_tables.nim b/tests/vm/tslow_tables.nim index 7ee523a87..f726c6323 100644 --- a/tests/vm/tslow_tables.nim +++ b/tests/vm/tslow_tables.nim @@ -11,8 +11,7 @@ done''' import tables type Flop = object - a: int - #array[128, int] # <-- compile time is proportional to array size + a: array[128, int] # <-- compile time is proportional to array size proc hop(): bool = var v: Table[int, Flop] |