blob: ed4fe7fc35db2eb000ca7a455b1fc277bd8a6856 [file] [log] [blame]
/*
:name: string_copy
:description: string copy test
:should_fail: 0
:tags: 11.10.1
:type: simulation parsing
*/
module top();
bit [8*14:1] a;
bit [8*14:1] b;
initial begin
a = "Test";
b = a;
$display(":assert:('%s' == '%s')", a, b);
end
endmodule