blob: 0f66eb1bba2b53a94b9f86212e695de26f1c11ba [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