Control Plots draw order with multiple y-axes

I’m trying to make a line plot vs the right y-axis and a bar plot on the left y-axis using twinx and I run into the problem that the bars obscure the line plot.

Is there any way to make Plots draw the line plot on top of the bars in this case while still keeping the line plot y-axis to the right?

let
       plt = plot(randn(10), ylabel="line plot")
       bar!(twinx(plt), fill(20, 10), color=:orange, label=false, ylabel="bar plot")
end

image

I can to some extent work around this by reducing the alpha value of the bars, but since I need to plot multiple bar series (using StatsPlots.groupedbar) I’d like to avoid this.

Found one (probably unofficial) way to do it based on the source code of Plots.twin:

let
       plt = bar(fill(20, 10), color=:orange, label=false, ylabel="bar plot")
       plot!(twinx(plt), randn(10), ylabel="line plot")
       plt[1][:yaxis][:mirror] = true
       plt[2][:yaxis][:mirror] = false
       plt
end