blob: 98e8636f76f25b3f00220721f1337bd0181ef1d2 [file] [log] [blame]
/*
:name: string-assignment
:description: String assignment tests
:should_fail: 0
:tags: 5.9
*/
module top();
byte a;
bit [7:0] b;
logic [7:0] c;
initial begin;
a = "a";
b = "b";
c = "c";
end
endmodule