mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-09-04 08:34:09 +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]>
13 lines
169 B
Verilog
13 lines
169 B
Verilog
// Check that dynamic arrays can not be used in single operand l-value concatenations.
|
|
|
|
module test;
|
|
|
|
int x;
|
|
int d[];
|
|
|
|
initial begin
|
|
{d} = x;
|
|
end
|
|
|
|
endmodule
|