summary refs log tree commit diff stats
path: root/tests/stdlib/thtmlparser2813.nim
Commit message (Expand)AuthorAgeFilesLines
* Added test file for #2813.Dominik Picheta2015-06-201-0/+45
e/tests/stckovfl.nim?h=devel&id=ac9c1cd6b980d4f00eeb52d1109d8e2c8cd21213'>^
78f4aacde ^
e25384db8 ^

ddaedab83 ^
e80465dac ^
ddaedab83 ^

1
2
3
4
5
6
7
8
9
10

                                
                        
             

                
                      
 

              
# To test stack overflow message

proc over(a: int): int =
  if a >= 10:
    assert false
    return
  result = over(a+1)+5

Echo($over(0))