iverilog/ivtest/ivltests/sv_lval_concat_darray_fail1.v

13 lines
157 B
Verilog

// Check that dynamic arrays can not be used in l-value concatenations.
module test;
int x;
int d[];
initial begin
{x, d} = x;
end
endmodule