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