<div dir="ltr">Hey Chris already solved this for 2.2, it will now give you a fix-it to use [:]. So no need to file a bug :)</div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr">







<p><b><font color="#cc0000">___________________________________</font></b></p><p><b>James⎥Head of Trolls</b></p><p><b><font color="#cc0000"><a href="mailto:james@supmenow.com" target="_blank">james@supmenow.com</a>⎥<a href="http://supmenow.com" target="_blank">supmenow.com</a></font></b></p><p><b><font size="2">Sup</font></b></p><p><b><font size="2">Runway East
</font></b></p><p><b><font size="2">10 Finsbury Square</font></b></p><p><b><font size="2">London</font></b></p><p><b><font size="2">
EC2A 1AF </font></b></p></div></div></div></div></div></div></div></div></div></div></div>
<br><div class="gmail_quote">On Wed, Mar 9, 2016 at 6:54 PM, Adriano Ferreira via swift-users <span dir="ltr">&lt;<a href="mailto:swift-users@swift.org" target="_blank">swift-users@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">Thanks Dmitri, will do as you suggested.<br>
<br>
BTW, sorry for the typo... I actually intended &quot;=&quot; rather than “:&quot;, but luckily you got this :P<br>
<br>
Best,<br>
<br>
— A<br>
<div class="HOEnZb"><div class="h5"><br>
&gt; On Mar 9, 2016, at 12:48 PM, Dmitri Gribenko &lt;<a href="mailto:gribozavr@gmail.com">gribozavr@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; Hi Adriano,<br>
&gt;<br>
&gt; On Wed, Mar 9, 2016 at 8:45 AM, Adriano Ferreira via swift-users<br>
&gt; &lt;<a href="mailto:swift-users@swift.org">swift-users@swift.org</a>&gt; wrote:<br>
&gt;&gt; Hi everyone,<br>
&gt;&gt;<br>
&gt;&gt; Does anyone know why Swift won’t let me use the alternative way below to<br>
&gt;&gt; init the dictionary?<br>
&gt;&gt;<br>
&gt;&gt; public extension SequenceType where Self.Generator.Element: Hashable {<br>
&gt;&gt;<br>
&gt;&gt;    @warn_unused_result<br>
&gt;&gt;    func frequencies() -&gt; [Self.Generator.Element: Int] {<br>
&gt;&gt;        var dictionary: [Self.Generator.Element: Int] = [:]<br>
&gt;&gt;        // var dictionary: Dictionary&lt;Self.Generator.Element, Int&gt;() // &lt;&lt;&lt;<br>
&gt;&gt; Not allowed!<br>
&gt;<br>
&gt; It produces a bad error message, unfortunately.  The issue is that you<br>
&gt; have a &#39;:&#39; instead of &#39;=&#39;.<br>
&gt;<br>
&gt; But, that also fails.  Only after I remove &#39;Self.&#39; the compiler accepts it:<br>
&gt;<br>
&gt; var dictionary = Dictionary&lt;Generator.Element, Int&gt;()<br>
&gt;<br>
&gt; I would recommend you to file two issues on <a href="http://bugs.swift.org" rel="noreferrer" target="_blank">bugs.swift.org</a>, the first<br>
&gt; one about a bad diagnostic for your code, and the second one about the<br>
&gt; compiler rejecting &quot;var dictionary =<br>
&gt; Dictionary&lt;Self.Generator.Element, Int&gt;()&quot; in the code above (when the<br>
&gt; equal sign is used).<br>
&gt;<br>
&gt; Dmitri<br>
&gt;<br>
&gt; --<br>
&gt; main(i,j){for(i=2;;i++){for(j=2;j&lt;i;j++){if(!(i%j)){j=0;break;}}if<br>
&gt; (j){printf(&quot;%d\n&quot;,i);}}} /*Dmitri Gribenko &lt;<a href="mailto:gribozavr@gmail.com">gribozavr@gmail.com</a>&gt;*/<br>
<br>
_______________________________________________<br>
swift-users mailing list<br>
<a href="mailto:swift-users@swift.org">swift-users@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-users" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-users</a><br>
</div></div></blockquote></div><br></div>