Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-11
/
11.4.12.1--repl_op.sv
blob: ac7c0adb8f807a291489c32c90f726df1b52e7b7 [
file
] [
log
] [
blame
]
/*
:name: repl_op
:description: replication operator test
:should_fail: 0
:tags: 11.4.12.1
*/
module
top
();
bit
[
15
:
0
]
a
;
bit
[
1
:
0
]
b
=
2
'b10;
initial begin
a = {8{b}};
end
endmodule