blob: fd77a56743f92c61f6807284b0beb6d7afb90cad [file] [log] [blame]
/*
:name: idx_neg_part_select
:description: indexed negative part-select bit test
:should_fail: 0
:tags: 11.5.1
*/
module top();
logic [15:0] a;
logic [3:0] b;
initial begin
b = a[11-:4];
end
endmodule