diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/system/tsystem_misc.nim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/system/tsystem_misc.nim b/tests/system/tsystem_misc.nim index 66b789ee9..ce36895a1 100644 --- a/tests/system/tsystem_misc.nim +++ b/tests/system/tsystem_misc.nim @@ -16,3 +16,7 @@ doAssert high(uint32) > low(uint32) doAssert high(float) > low(float) doAssert high(float32) > low(float32) doAssert high(float64) > low(float64) + +# bug #6710 +var s = @[1] +s.delete(0) |