blob: c422fcaa9d7c461706d18b3f3f984a3db740f5dc [file] [log] [blame]
/*
:name: string_compare
:description: string comparison test
:should_fail: 0
:tags: 11.10.1
:type: simulation parsing
*/
module top();
bit [8*14:1] a;
bit [8*14:1] b;
initial begin
a = "Test";
b = "Test";
$display(":assert:('%s' == '%s')", a, b);
end
endmodule