iverilog/ivtest/ivltests/sv_darray_assign_fail3.v

15 lines
212 B
Coq
Raw Normal View History

// Check that it is not possible to assign a dynamic array with different
// element type width.
module test;
int d1[];
shortint d2[];
initial begin
d1 = d2;
$dispaly("FAILED");
end
endmodule