mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-17 10:07:09 +00:00
6 lines
112 B
Nim
6 lines
112 B
Nim
# no statement after return
|
|
proc main() =
|
|
return
|
|
echo("huch?") #ERROR_MSG statement not allowed after
|
|
|