Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
refs/heads/mithro-patch-1
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.5.1--idx_select.sv
blob: 26c2351aba84a0bd09bf63549ccb0c59cae03fa4 [
file
] [
log
] [
blame
] [
edit
]
/*
: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