diff options
author | Araq <rumpf_a@web.de> | 2014-04-01 20:40:01 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-04-01 20:40:01 +0200 |
commit | ac02aecb042f28dc137b35325d731c43f43d3b30 (patch) | |
tree | f2a183f668391fda209b05f237859c39da56d092 | |
parent | b579ca44eb90df498b251d6ee3f1b3110e13f933 (diff) | |
download | Nim-ac02aecb042f28dc137b35325d731c43f43d3b30.tar.gz |
make tstaticprintseq green
-rw-r--r-- | tests/vm/tstaticprintseq.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/vm/tstaticprintseq.nim b/tests/vm/tstaticprintseq.nim index b9658e93d..b002d366c 100644 --- a/tests/vm/tstaticprintseq.nim +++ b/tests/vm/tstaticprintseq.nim @@ -78,5 +78,5 @@ static: echo y static: - var foo = int32.high - echo foo, " ", int32.high + var foo2 = int32.high + echo foo2, " ", int32.high |