Files
Nim/tests/tfinally.nim
2010-02-14 00:29:35 +01:00

11 lines
140 B
Nim

# Test return in try statement:
proc main: int =
try:
return 1
finally:
echo "came here"
discard main() #OUT came here