Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
1b0062119887da734c600d091a65c037f5fafa7d
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-6
/
6.16.6--string_compare.sv
blob: d65b8fa1b14629a433d75439f7848ca80adec26d [
file
] [
log
] [
blame
]
/*
:name: string_compare_fn
:description: string.compare() tests
:should_fail: 0
:tags: 6.16.6
*/
module
top
();
string
a
=
"Test"
;
string
b
=
"TEST"
;
int
c
=
a
.
compare
(
b
);
endmodule