blob: cd95181e74dc9693ec74e49e045ea5aaf08e791b [file] [log] [blame]
/*
:name: non_idx_part_select
:description: non-indexed 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:8];
end
endmodule