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