blob: 9afdb34ae27e18ebf0f0c4ddf4c4bdf35ca0e8c5 [file] [log] [blame]
/*
:name: concat_op
:description: concatenation operator test
:should_fail: 0
:tags: 11.4.12
*/
module top();
bit [15:0] a;
bit [7:0] b = 8'b10101100;
bit [7:0] c = 8'b01010011;
initial begin
a = {b, c};
end
endmodule