<div dir="ltr"><div>I think the word you are looking for is “confusing”, not “ambiguous”. Nothing is ambiguous</div><div>about the code you wrote, but you could make an argument that you find it confusing (since this is something subjective).</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Mar 15, 2017 at 12:35 PM, Rien 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><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">What does the following code fragment do?<br>
<br>
serverCert.write(to: certificateUrl) { showErrorInKeyWindow(message); return }<br>
<br>
The only possible answer is: I don’t know.<br>
<br>
The problem is finding out what the “return” statement will do.<br>
<br>
Without knowing if the {...} is a code block or a trailing closure it is impossible to know what the return statement will do. It will either end the closure or it will end the function that contains this code block.<br>
<br>
This could be disambiguated by using the same syntax as for lazy variables:<br>
<br>
serverCert.write(to: serverCertificateUrl) { showErrorInKeyWindow(message: message); return }()<br>
<br>
Now it is clear that the return statement will only terminate the (trailing) closure.<br>
<br>
A question to the educators on the list: Is this a real problem?<br>
<br>
Personally, I dislike this situation, but I am also ambivalent towards the solution I just described.<br>
<br>
Regards,<br>
Rien<br>
<br>
Site: <a href="http://balancingrock.nl" rel="noreferrer" target="_blank">http://balancingrock.nl</a><br>
Blog: <a href="http://swiftrien.blogspot.com" rel="noreferrer" target="_blank">http://swiftrien.blogspot.com</a><br>
Github: <a href="http://github.com/Balancingrock" rel="noreferrer" target="_blank">http://github.com/<wbr>Balancingrock</a><br>
Project: <a href="http://swiftfire.nl" rel="noreferrer" target="_blank">http://swiftfire.nl</a><br>
<br>
<br>
<br>
<br>
<br>
______________________________<wbr>_________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br>
</blockquote></div><br></div>