11 lines
144 B
Coq
11 lines
144 B
Coq
|
|
module top;
|
||
|
|
reg [2:-1] vec;
|
||
|
|
integer idx;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
idx = 'bx;
|
||
|
|
assign vec[idx] = 1'b1;
|
||
|
|
deassign vec[idx];
|
||
|
|
end
|
||
|
|
endmodule
|