<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div><blockquote type="cite" class=""><div class="">On Feb 1, 2016, at 3:14 PM, Jordan Rose via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class="">Yep. I'd just consider this a bug, though someone from the standard library would have to confirm that they don't consider it an API change. Feel free to tack it on to SR-245; we might as well do them all at the same time.</div><div class=""><br class=""></div><div class="">Jordan</div><br class=""><div class=""><blockquote type="cite" class=""><div class="">On Feb 1, 2016, at 9:44, Félix Cloutier via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">I think that there should be a warning for unused literals. I can't think of any case where you would like to have a literal just hanging there in Swift.<br class=""><div class="">
<br class="Apple-interchange-newline"><span style="font-family: 'Lucida Grande'; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-position: normal; font-variant-caps: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">Félix</span>
</div></div></div></blockquote></div></div></div></blockquote><div><br class=""></div><div>I.... do this all the time in Playgrounds, mainly to see if a conditional branch has been executed as I'm testing or building:</div><div><br class=""></div><div><img apple-inline="yes" id="28706707-2E02-4164-B885-7FA16C9F40B8" height="73" width="479" apple-width="yes" apple-height="yes" src="cid:C886EC15-95CF-42C8-9E68-DBFF9CD549F8@hsd1.il.comcast.net" class=""></div><div><br class=""></div><div>But a warning is a good idea otherwise, and I can figure something else out. :)</div><br class=""><blockquote type="cite" class=""><div class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><blockquote type="cite" class=""><div class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">

<br class=""><div class=""><blockquote type="cite" class=""><div class="">Le 1 févr. 2016 à 06:15:32, Jens Persson via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; a écrit :</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><div class="gmail_signature"><div class="gmail_signature">func perhapsConfusing() {</div><div class="gmail_signature">&nbsp; &nbsp; let s =</div><div class="gmail_signature">&nbsp; &nbsp; "Since this function compiles fine. One might "</div><div class="gmail_signature">&nbsp; &nbsp; "think that string literals in Swift can be "</div><div class="gmail_signature">&nbsp; &nbsp; "written like this. But that is not the case. "</div><div class="gmail_signature">&nbsp; &nbsp; "Only the first string literal will be printed."</div><div class="gmail_signature">&nbsp; &nbsp; "The rest (including eg this) will be silently "</div><div class="gmail_signature">&nbsp; &nbsp; "ignored."</div><div class="gmail_signature">&nbsp; &nbsp; 12.34 // As will this.</div><div class="gmail_signature">&nbsp; &nbsp; 12 + 4 // And this.</div><div class="gmail_signature">&nbsp; &nbsp; 123 == 456 // And this.</div><div class="gmail_signature">&nbsp; &nbsp; print(s) // Prints: "Since this function compiles fine. One might "</div><div class="gmail_signature">}</div><div class="gmail_signature"><br class=""></div><div class="">Besides being possibly surprising for newcomers (who may assume string literals split across several lines as above will be joined), there are some related inconsistencies in whether warnings are generated for unused results or not, for example</div><div class="">123 == 456 // Unused result is silently ignored, while</div><div class="">1.2 == 3.4 // produces a warning: Result of call to '==' is unused.</div><div class="">(The following bug report is about unused results, but it doesn't mention the IMHO similar unused-literals-case: <a href="https://bugs.swift.org/browse/SR-245" class="">https://bugs.swift.org/browse/SR-245</a> )</div><div class=""><br class=""></div><div class="">So my question is:</div><div class="">Should/could there be a warning for unused literals?</div><div class=""><br class=""></div><div class="">/Jens</div><div class=""><br class=""></div></div>
</div>
_______________________________________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class=""><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class=""></div></blockquote></div><br class=""></div>_______________________________________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class=""><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" class="">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br class=""></div></blockquote></div><br class=""></div>_______________________________________________<br class="">swift-evolution mailing list<br class=""><a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a><br class="">https://lists.swift.org/mailman/listinfo/swift-evolution<br class=""></div></blockquote></div><br class=""></body></html>