iverilog/ivtest/ivltests/sv_lval_concat_queue_fail2.v

13 lines
162 B
Verilog

// Check that queues can not be used in single operand l-value concatenations.
module test;
int x;
int q[$];
initial begin
{q} = x;
end
endmodule