diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/vm/tstaticprintseq.nim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/vm/tstaticprintseq.nim b/tests/vm/tstaticprintseq.nim index 3dfd0048d..b9658e93d 100644 --- a/tests/vm/tstaticprintseq.nim +++ b/tests/vm/tstaticprintseq.nim @@ -17,7 +17,8 @@ bb 22 aa bb -24''' +24 +2147483647 2147483647''' """ const s = @[1,2,3] @@ -76,3 +77,6 @@ const y = fac() static: echo y +static: + var foo = int32.high + echo foo, " ", int32.high |