mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-09-07 03:43:19 +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]>
11 lines
174 B
Verilog
11 lines
174 B
Verilog
// Check that dynamic arrays can not be used in single operand continuous assignment l-value concatenations.
|
|
|
|
module test;
|
|
|
|
int d[];
|
|
int y;
|
|
|
|
assign {d} = y;
|
|
|
|
endmodule
|