<div dir="ltr"><div class="gmail_quote"><div dir="ltr">Thanks Dmitri,<div><br></div><div>Does the first statements I posted without .value compile at this time?</div><div>Or give a better error than I was receiving?</div></div><div dir="ltr"><div><br></div><div>Adam</div></div><br><div class="gmail_quote"><div dir="ltr">On Fri, Mar 4, 2016 at 3:46 PM Dmitri Gribenko &lt;<a href="mailto:gribozavr@gmail.com" target="_blank">gribozavr@gmail.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Thu, Mar 3, 2016 at 7:54 PM, Adam Campbell via swift-users<br>
&lt;<a href="mailto:swift-users@swift.org" target="_blank">swift-users@swift.org</a>&gt; wrote:<br>
&gt; Discovered this when trying to answer a stackoverflow question about setting<br>
&gt; character values in a CCString array.<br>
&gt;<br>
&gt; The following code produces an ambiguous error:<br>
&gt; var buff = [CChar](count: 5, repeatedValue: 0)<br>
&gt; buff[0] = &quot;A&quot;.utf8.first!.value // Error - Cannot assign value of type<br>
&gt; &#39;Int8&#39; to type &#39;CChar&#39; (aka &#39;Int8&#39;)<br>
&gt;<br>
&gt; I can easily get around this by changing the second line to:<br>
&gt; buff[0].value = &quot;A&quot;.utf8.first!.value<br>
&gt;<br>
&gt; Can someone explain what is happening here? As well as the significance of<br>
&gt; Int8.value?<br>
<br>
The &#39;var value&#39; property used to be a property of type Builtin.Int8,<br>
which maps directly to LLVM&#39;s i8.  This is a part of the integers<br>
implementation, and it was renamed to &#39;var _value&#39; a while ago.<br>
Please don&#39;t use this property.  The code that you posted (that<br>
accesses &#39;.value&#39;) does not compile anymore.<br>
<br>
Dmitri<br>
<br>
--<br>
main(i,j){for(i=2;;i++){for(j=2;j&lt;i;j++){if(!(i%j)){j=0;break;}}if<br>
(j){printf(&quot;%d\n&quot;,i);}}} /*Dmitri Gribenko &lt;<a href="mailto:gribozavr@gmail.com" target="_blank">gribozavr@gmail.com</a>&gt;*/<br>
</blockquote></div></div></div>