Files
Nim/tests/controlflow/tstatret.nim
2018-12-11 21:23:21 +01:00

10 lines
239 B
Nim

discard """
errormsg: "unreachable statement after 'return' statement or '{.noReturn.}' proc"
file: "tstatret.nim"
line: 9
"""
# no statement after return
proc main() =
return
echo("huch?") #ERROR_MSG statement not allowed after