Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
1b0062119887da734c600d091a65c037f5fafa7d
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-5
/
5.13-builtin-methods-strings.sv
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