diff options
author | Araq <rumpf_a@web.de> | 2012-05-11 00:11:17 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-05-11 00:11:17 +0200 |
commit | 85ac5f94f1c5b63692d46c33afeaddd5fcc88614 (patch) | |
tree | abbc10d3c6f4e7211d2a11b3b741adc73c6fc737 /tests/run | |
parent | 8cf9b48ad4ca7fbff674f76d0a30f676ae28fc26 (diff) | |
download | Nim-85ac5f94f1c5b63692d46c33afeaddd5fcc88614.tar.gz |
made tests green again
Diffstat (limited to 'tests/run')
-rwxr-xr-x | tests/run/tovfint.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run/tovfint.nim b/tests/run/tovfint.nim index cfb1e649d..ef5f0f325 100755 --- a/tests/run/tovfint.nim +++ b/tests/run/tovfint.nim @@ -6,7 +6,7 @@ discard """ var i: int -i = int(0xffffffff) +i = int(0xffffffff'i32) when defined(cpu64): if i == 4294967295: write(stdout, "works!\n") |