blob: 48ab844d8d5ba1352772c20a62053aca648211c8 [file] [log] [blame]
/*
:name: string_copy
:description: string copy test
:should_fail: 0
:tags: 11.10.1
*/
module top();
bit [8*14:1] a;
bit [8*14:1] b;
initial begin
a = "Test";
b = a;
$display(b);
end
endmodule