mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-09-05 16:56:06 +02:00
Check that class objects, dynamic arrays, queues, strings and static unpacked arrays can not be used as l-value concatenation operands. Check procedural and continuous assignment concatenations, including single operand concatenations. Signed-off-by: Lars-Peter Clausen <[email protected]>
12 lines
171 B
Verilog
12 lines
171 B
Verilog
// Check that dynamic arrays can not be used in continuous assignment l-value concatenations.
|
|
|
|
module test;
|
|
|
|
int x;
|
|
int d[];
|
|
int y;
|
|
|
|
assign {x, d} = y;
|
|
|
|
endmodule
|