diff options
Diffstat (limited to 'tests/vm/twrongarray.nim')
-rw-r--r-- | tests/vm/twrongarray.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vm/twrongarray.nim b/tests/vm/twrongarray.nim index c1514d0e9..7f24290e2 100644 --- a/tests/vm/twrongarray.nim +++ b/tests/vm/twrongarray.nim @@ -14,4 +14,4 @@ when false: proc two(dummy: int, size: int) = var x: array[size * 1, int] # compiles, but shouldn't? - #assert(x.len == size) # just for fun + # doAssert(x.len == size) # just for fun |