Files
Nim/tests/exception/tfinally.nim
2014-01-13 02:10:03 +01:00

20 lines
267 B
Nim

discard """
file: "tfinally.nim"
output: "came\nhere\n3"
"""
# 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