diff options
author | Araq <rumpf_a@web.de> | 2014-04-01 16:35:50 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-04-01 16:35:50 +0200 |
commit | befdce51b44408e7e29e5ca78441f7b223f67bf8 (patch) | |
tree | 067b4d80da8257d37dc0c6b257a70f6208d512bd /tests/vm/tstaticprintseq.nim | |
parent | dc2b21e9b2a15e301b40546ecd792b6bba4d75f4 (diff) | |
download | Nim-befdce51b44408e7e29e5ca78441f7b223f67bf8.tar.gz |
fixed another vm bug
Diffstat (limited to 'tests/vm/tstaticprintseq.nim')
-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 |