blob: 72035d9838a6e1b2a4c24e5dafc219028b6ea390 [file] [log] [blame]
/*
:name: empty_string
:description: empty string test
:should_fail: 0
:tags: 11.10.3
*/
module top();
bit [8*14:1] a;
initial begin
a = "";
assert(a == 0);
end
endmodule