summary refs log tree commit diff stats
path: root/tests/controlflow/tstatret.nim
blob: a3558e6f452a2666bdece7890399d652a4b51d62 (plain) (blame)
1
2
3
4
5
6
7
8
9
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