Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
e911119afa19222dc9bbad9ba934f3d965e34302
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.10.1--string_copy.sv
blob: 48ab844d8d5ba1352772c20a62053aca648211c8 [
file
] [
log
] [
blame
]
/*
:name: string_copy
:description: string copy test
:should_fail: 0
:tags: 11.10.1
*/
module
top
();
bit
[
8
*
14
:
1
]
a
;
bit
[
8
*
14
:
1
]
b
;
initial
begin
a
=
"Test"
;
b
=
a
;
$display
(
b
);
end
endmodule