JuliaLang/julia

disallow return in finally

Open

#57,875 opened on Mar 24, 2025

View on GitHub
 (20 comments) (9 reactions) (0 assignees)Julia (48,709 stars) (5,773 forks)batch import
breakinghelp wantedminor changeneeds pkgeval

Description

This is unfortunate:

julia> function f(x)
           try
               error("test")
           finally
               return x
           end
       end

julia> f(4)
4

Brought up by @dalum on Slack. Would be good to simple make return in a finally block a syntax error. Seems unlikely to be widely used.

Contributor guide

disallow return in finally · JuliaLang/julia#57875 | Good First Issue