mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
24 lines
276 B
Nim
24 lines
276 B
Nim
discard """
|
|
file: "tfinally.nim"
|
|
output: '''came
|
|
here
|
|
3'''
|
|
"""
|
|
# Test return in try statement:
|
|
|
|
proc main: int =
|
|
try:
|
|
try:
|
|
return 1
|
|
finally:
|
|
echo("came")
|
|
return 2
|
|
finally:
|
|
echo("here ")
|
|
return 3
|
|
|
|
echo main() #OUT came here 3
|
|
|
|
|
|
|