diff options
author | Araq <rumpf_a@web.de> | 2012-01-17 23:58:18 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-01-17 23:58:18 +0100 |
commit | 78f4aacde9e79e9a13b17dc2a3709d5f09a0ae0b (patch) | |
tree | c15ee952109ec54c36267593c0a851444878b434 /tests | |
parent | 42dad650e036efdc6e76e64ac0e30c4571937a6e (diff) | |
download | Nim-78f4aacde9e79e9a13b17dc2a3709d5f09a0ae0b.tar.gz |
pragma blocks; fixed line information issue with user defined assertions
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/stckovfl.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stckovfl.nim b/tests/stckovfl.nim index 205d73edf..eeb499bed 100755 --- a/tests/stckovfl.nim +++ b/tests/stckovfl.nim @@ -1,7 +1,7 @@ # To test stack overflow message proc over(a: int): int = - if a >= 400: + if a >= 10: assert false return result = over(a+1)+5 |