blob: 26c2351aba84a0bd09bf63549ccb0c59cae03fa4 [file] [log] [blame]
/*
:name: idx_select
:description: indexed select bit test
:should_fail: 0
:tags: 11.5.1
*/
module top();
logic [15:0] a;
logic b;
initial begin
b = a[11];
end
endmodule