[swift-evolution] Missing warnings for unused literals (and results)?

Félix Cloutier felixcca at yahoo.ca
Mon Feb 1 11:44:50 CST 2016


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.

Félix

> Le 1 févr. 2016 à 06:15:32, Jens Persson via swift-evolution <swift-evolution at swift.org> a écrit :
> 
> func perhapsConfusing() {
>     let s =
>     "Since this function compiles fine. One might "
>     "think that string literals in Swift can be "
>     "written like this. But that is not the case. "
>     "Only the first string literal will be printed."
>     "The rest (including eg this) will be silently "
>     "ignored."
>     12.34 // As will this.
>     12 + 4 // And this.
>     123 == 456 // And this.
>     print(s) // Prints: "Since this function compiles fine. One might "
> }
> 
> 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
> 123 == 456 // Unused result is silently ignored, while
> 1.2 == 3.4 // produces a warning: Result of call to '==' is unused.
> (The following bug report is about unused results, but it doesn't mention the IMHO similar unused-literals-case: https://bugs.swift.org/browse/SR-245 <https://bugs.swift.org/browse/SR-245> )
> 
> So my question is:
> Should/could there be a warning for unused literals?
> 
> /Jens
> 
> _______________________________________________
> swift-evolution mailing list
> swift-evolution at swift.org
> https://lists.swift.org/mailman/listinfo/swift-evolution

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.swift.org/pipermail/swift-evolution/attachments/20160201/d79bb15c/attachment.html>


More information about the swift-evolution mailing list