module top;
reg [2:-1] vec;
integer idx;
initial begin
idx = 'bx;
assign vec[idx] = 1'b1;
deassign vec[idx];
end
endmodule