Files
Nim/tests/controlflow/tstatret.nim
Clyybber 299ddda5f6 Make unreachable code a warning instead of an error (#14816)
* Make unreachable code a warning

* Adapt test

* Trigger CI
2020-06-29 08:49:53 +02:00

10 lines
251 B
Nim

discard """
nimout: '''
tstatret.nim(9, 7) Warning: unreachable code after 'return' statement or '{.noReturn.}' proc [UnreachableCode]
'''
"""
# no statement after return
proc main() =
return
echo("huch?") #ERROR_MSG statement not allowed after