diff options
Diffstat (limited to 'tests/stckovfl.nim')
-rw-r--r-- | tests/stckovfl.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/stckovfl.nim b/tests/stckovfl.nim index eeb499bed..cbc893d2e 100644 --- a/tests/stckovfl.nim +++ b/tests/stckovfl.nim @@ -1,10 +1,10 @@ # To test stack overflow message -proc over(a: int): int = +proc over(a: int): int = if a >= 10: assert false return result = over(a+1)+5 - + Echo($over(0)) |