Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
1b0062119887da734c600d091a65c037f5fafa7d
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-6
/
6.16.8--string_substr.sv
blob: 81be6e3bac9d0acfc0d1d60e003b5c928949df20 [
file
] [
log
] [
blame
]
/*
:name: string_substr
:description: string.substr() tests
:should_fail: 0
:tags: 6.16.8
*/
module
top
();
string
a
=
"Test"
;
string
b
=
a
.
substr
(
1
,
2
);
endmodule