-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Description
If not a bug, I think this is worth documenting. The finally isn't visited.
julia> function foo()
try
println(1)
error()
catch
println(2)
@goto here
finally
println(3)
end
@label here
println(4)
return :done
end
foo (generic function with 1 method)
julia> foo()
1
2
4
:done
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels