# To test stack overflow message

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