<div dir="ltr">On Sat, Jan 14, 2017 at 5:35 PM, Amir Michail <span dir="ltr">&lt;<a href="mailto:a.michail@me.com" target="_blank">a.michail@me.com</a>&gt;</span> wrote:<br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
&gt; On Jan 14, 2017, at 6:28 PM, Xiaodi Wu &lt;<a href="mailto:xiaodi.wu@gmail.com">xiaodi.wu@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; This has been brought up on this list before. The conclusion of the previous thread on this topic was that there is a way to do this:<br>
&gt;<br>
&gt; #if false<br>
&gt; // put your code here<br>
&gt; #endif<br>
&gt;<br>
<br>
</span>This would not check the code for compilability within the surrounding code. This requires more than a syntax check.</blockquote><div><br></div><div>I can&#39;t say I&#39;ve ever needed that feature; could you share a concrete use case?</div><div><br></div><div>In any case, if you put code in a function that&#39;s not exported and never invoked, I believe you would achieve the desired effect. Within the body of a function, you could do so in a closure.</div><div><br></div><div>```</div><div>func foo() {</div><div>  // code you want to run</div><div>  _ = {</div><div>    // code you don&#39;t intend to run</div><div>  }</div><div>  // more code you want to run</div><div>}</div><div>```</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">
&gt; It does not allow you to comment out fragments of a single statement, but the incremental value of devoting time to additionally support that is, it would seem, low.<br>
&gt;<br>
&gt; On Sat, Jan 14, 2017 at 17:18 Amir Michail via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt; The code in a “code comment&quot; must compile (not just be syntactically correct) yet must not have any effect on the resulting executable.<br>
&gt;<br>
&gt; For example, commented entries in an array would be checked for compilability but would not be included in the executable.<br>
&gt;<br>
&gt; Such “code comments&quot; would allow you to have code/data that is currently unused but is constantly checked to be valid just in case you want to use it in the future.<br>
&gt;<br>
&gt; ______________________________<wbr>_________________<br>
&gt; swift-evolution mailing list<br>
&gt; <a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
&gt; <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>
<br>
</div></div></blockquote></div><br></div></div>