You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lowering: don't reverse handler order in (pop-handler-list ...) (#55871)
We were accidentally emitting a different pop order for `Expr(:leave,
...)` if you uncomment the `nothing` below:
```julia
let src = Meta.@lower let
try
try
return 1
catch
end
finally
# nothing # <- uncomment me
end
end
println.(filter(stmt->Base.isexpr(stmt, :leave), src.args[1].code))
nothing
end
```
(cherry picked from commit deac82a)
0 commit comments