blob: 34aff7e56ba839df66e41405fa23a95440ad832e [file] [log] [blame]
/*
:name: string_bit_array
:description: string stored in bit array test
:should_fail: 0
:tags: 11.10
*/
module top();
bit [8*14:1] a;
initial begin
a = "Test";
end
endmodule