blob: 1608bc416a009fa61ad078b1ba46fd7585ec974e [file] [log] [blame]
/*
:name: builtin-methods-string
:description: Check if built-in methods can be called
:should_fail: 0
:tags: 5.13
*/
module top();
string a = "test";
initial begin;
$display("length check: %d\n", a.len());
end
endmodule