Files
Nim/tests/errmsgs/t13736.nim

10 lines
140 B
Nim

discard """
errormsg: "cannot infer the return type of 'foo'"
line: 6
"""
proc foo(n: int): auto =
return foo(n + 1)
discard foo(0)