<div dir="ltr">(Note for a future self) this limitation will be removed in OTP 24 <a href="https://github.com/erlang/otp/pull/2662">https://github.com/erlang/otp/pull/2662</a></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Jun 28, 2018 at 12:21 PM Richard Carlsson <<a href="mailto:carlsson.richard@gmail.com">carlsson.richard@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">If I recall correctly, it was initially decided to keep the set of safe variables conservative when try/catch was added. It could be relaxed to allow this case.</div><div class="gmail_extra"><br clear="all"><div><div><br>        /Richard</div></div>
<br><div class="gmail_quote">2018-06-28 12:08 GMT+02:00 Peti Gömöri <span dir="ltr"><<a href="mailto:gomoripeti@gmail.com" target="_blank">gomoripeti@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hello,<div><br></div><div>I understand that passing variables between different blocks of a try catch expression is mostly unsafe, because in case of expressions it is not guaranteed that the variable binding actually happened.</div><div><br></div><div>But why using a variable in a clause after "of" that is bound in the block after "try" is marked as unsafe by the compiler?</div><div>For example:</div><div><br></div><div>```</div><div><div>f() -></div><div>    try</div><div>        {A, B} = a:b(),</div><div>        A</div><div>    of</div><div>        ok -></div><div>            B %% unsafe ???</div><div>    catch _:_ -></div><div>            a:b()</div><div>    end.</div></div><div>```</div><div><br></div><div>thanks</div><div>Peter</div></div>
<br>_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" rel="noreferrer" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
<br></blockquote></div><br></div>
</blockquote></div>