<div dir="ltr"><div>On Thu, Feb 9, 2017 at 2:25 PM, Haravikk via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br></div><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div style="word-wrap:break-word"><div>I wonder if an alternative to the original proposal might be to allow throw on the right hand side? So you could do:</div><div><br></div><div><font face="Monaco"><span class="gmail-m_2320481702251049346Apple-tab-span" style="white-space:pre-wrap">        </span>let y = x ?? throw myError</font></div><div><br></div><div></div></div></blockquote><div><br></div><div>You can do this today:</div><div><br></div><div>extension Error {</div><div>    func throwMe&lt;R&gt;() throws -&gt; R { throw self }</div><div>}</div><div><br></div><div>let y = try x ?? MyError().throwMe()<br></div><div> </div></div></div></div>