if we don’t inline we can’t have local or non-loca...
# arrow
p
if we don’t inline we can’t have local or non-local returns
r
I see, thanks for the use case. @pakoito @gildor So the bigger risk is not allowing local returns if we inline them all?
p
if we *don’t inline we don’t allow local returns
if we do inline w/o crossinline we allow local returns and coroutines, at the cost of copying the function on every callsite, affecting size
r
got it, thanks both for clarifying