Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-11
/
11.5.1--idx_select.sv
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