summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-01-17 23:58:18 +0100
committerAraq <rumpf_a@web.de>2012-01-17 23:58:18 +0100
commit78f4aacde9e79e9a13b17dc2a3709d5f09a0ae0b (patch)
treec15ee952109ec54c36267593c0a851444878b434 /tests
parent42dad650e036efdc6e76e64ac0e30c4571937a6e (diff)
downloadNim-78f4aacde9e79e9a13b17dc2a3709d5f09a0ae0b.tar.gz
pragma blocks; fixed line information issue with user defined assertions
Diffstat (limited to 'tests')
-rwxr-xr-xtests/stckovfl.nim2
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