<div style="white-space:pre-wrap">The IntegerLiteral type idea might be worth exploring. It does seem to provide some additional consistency. For example, wasn&#39;t it clarified on this list just recently that literals don&#39;t have a type and adopt one based on context? It&#39;d be nice to point out that 42 is an IntegerLiteral when explaining that it&#39;s not an Int.<br></div><br><div class="gmail_quote"><div dir="ltr">On Thu, Jun 2, 2016 at 18:22 Brent Royal-Gordon via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">&gt; So, you think that this syntax is enticing to new developers who naturally think that the feature works the way that I&#39;m proposing it should work, and you think that the right solution is to make the syntax illegal so that you can more conveniently tell them it doesn&#39;t work that way? :)<br>
<br>
I think the difference between a cast (which merely reinterprets a value as a compatible type) and a fullwidth conversion (which creates a similar instance of an incompatible type) is very important to understanding how to write Swift, and we shouldn&#39;t muddy the waters by creating a magic syntax.<br>
<br>
&gt; You can still tell them that it&#39;s a struct and you&#39;re calling an initializer on it; it&#39;s just that the initializer chosen is the special literal initializer because the argument is a literal.<br>
<br>
If you&#39;re planning to change `IntegerLiteralConvertible` and friends to require a fullwidth conversion initializer like `init(_ value: IntegerLiteralType)`, then this is simply an overload resolution rule. In that case, I think your proposal is fine.<br>
<br>
But if you&#39;re going to call `init(integerLiteral:)` like it&#39;s `init(_:)`, I don&#39;t think that&#39;s a good idea. Parameter labels are supposed to be significant; we don&#39;t want to lose that.<br>
<br>
--<br>
Brent Royal-Gordon<br>
Architechies<br>
<br>
_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
</blockquote></div>