blob: 514771d22ec51cc90046e763acadd0b409798b8c [file] [log] [blame]
/*
:name: string_concat_op
:description: string concatenation operator test
:should_fail: 0
:tags: 11.4.12.2
:type: simulation parsing
*/
module top();
string str;
initial begin
str = {"Hello", "_", "World", "!"};
$display(":assert:('%s' == 'Hello_World!')", str);
end
endmodule