Subject: | parse error with nested list |
if nested assignment (multiple "{{") is used the parser generates
error....
example code with response is provided below
==================example code======================================
module am
(/*autoarg*/);
output a,b,c,d,e,f;
input [5:0] z;
wire a,b,c,d,e,f;
assign {{a,b},c,d,e,f} = z;
endmodule // am
=======================response======================================
[root@punelabpc10 /tmp]$ vhier am.v
%Error: am.v:8: syntax error, unexpected '{', expecting "IDENTIFIER"
Exiting due to errors
[root@punelabpc10 /tmp]$