From ea8a049af3df3db47ba2f894254bfb910356b83f Mon Sep 17 00:00:00 2001 From: Araq Date: Tue, 17 Sep 2019 10:46:57 +0200 Subject: [PATCH] fixes the testcase --- tests/vm/tslow_tables.nim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/vm/tslow_tables.nim b/tests/vm/tslow_tables.nim index 7ee523a87c..f726c63231 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]