summary refs log blame commit diff stats
path: root/tests/stckovfl.nim
blob: 205d73edf7175256f41cc5cb3de395637193b612 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                


                



                      
# To test stack overflow message

proc over(a: int): int = 
  if a >= 400:
    assert false
    return
  result = over(a+1)+5
  
Echo($over(0))