summary refs log tree commit diff stats
path: root/tests/tfinally.nim
blob: df6397125c8468fa7c3131d8bf84160ca3c070cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# Test return in try statement:

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