summary refs log tree commit diff stats
path: root/tests/tfinally.nim
blob: 102444e825ad9fc67f160006ee00dc301a8b4f7b (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"
    
echo main()