blob: d50862d6ade02b3bba8abacd0e3b5fee6f65c92b [file] [log] [blame]
/*
:name: string_concat_op
:description: string concatenation operator test
:should_fail: 0
:tags: 11.4.12.2
*/
module top();
string str;
initial begin
str = {"Hello", " ", "World", "!"};
$display(str);
end
endmodule