15 lines
206 B
Coq
15 lines
206 B
Coq
|
|
// Check that continuous assignment of two compatible arrays is supported
|
||
|
|
|
||
|
|
module test;
|
||
|
|
|
||
|
|
wire [1:0] x[1:0];
|
||
|
|
wire [1:0] y[1:0];
|
||
|
|
|
||
|
|
assign x = y;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
$display("PASSED");
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|