iverilog/ivtest/ivltests/sv_lval_concat_darray_fail2.v

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