Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
36edd2bd845c2e56e36b75d2696ae7a98914e2a8
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.4.12.1--nested_repl_op.sv
blob: cbaaa645893fea8661ed493a9b00054868dfe41c [
file
] [
log
] [
blame
]
/*
:name: nested_repl_op
:description: nested replication operator test
:should_fail: 0
:tags: 11.4.12.1
*/
module
top
();
bit
[
15
:
0
]
a
;
bit
[
1
:
0
]
b
=
2
'b10;
bit [1:0] c = 2'
b01
;
bit
[
3
:
0
]
d
=
4
'b1111;
initial begin
a = {{3{b, c}}, d};
end
endmodule