summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2019-09-17 10:46:57 +0200
committerAndreas Rumpf <rumpf_a@web.de>2019-09-17 15:15:12 +0200
commitea8a049af3df3db47ba2f894254bfb910356b83f (patch)
tree40af4ad044dbc7ffebffe3437a6ce6f6b4d27a49
parentc9f3a8b269ffbe52ee843ba350faf569d99e8106 (diff)
downloadNim-ea8a049af3df3db47ba2f894254bfb910356b83f.tar.gz
fixes the testcase
-rw-r--r--tests/vm/tslow_tables.nim3
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]