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







                                
# To test stack overflow message

proc over(a: int): int = 
  if a == high(int): return
  result = over(a+1)+5
  
Echo($over(0))