<br><br><div class="gmail_quote">On Fri, Nov 18, 2011 at 2:16 PM, Vlad Dumitrescu <span dir="ltr"><<a href="mailto:vladdu55@gmail.com">vladdu55@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hi,<br>
<div class="im"><br>
On Fri, Nov 18, 2011 at 14:11, Joe Armstrong <<a href="mailto:erlang@gmail.com">erlang@gmail.com</a>> wrote:<br>
> -module(bug).<br>
> -compile(export_all).<br>
> -record(bug,{a}).<br>
> test() -><br>
>     [#bug{a=1} #bug{a=2}].<br>
<br>
</div>It's not a bug, it's the same as<br>
<br>
test() -><br>
    B = #bug{a=1},<br>
    [B#bug{a=2}].<br>
<br></blockquote><div><br>Ouch - oh dear you're right.<br><br>When I wrote this I thought #bug{a=1} is syntactic sugar for {bug,1}<br>therefore [#bug{a=1} #bug{a=2}] is the same as [{bug1,} {bug,2}] which is<br>an invalid list.<br>
<br>/J<br><br><br><br> </div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
regards,<br>
<font color="#888888">Vlad<br>
</font></blockquote></div><br>