Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-11
/
11.10.3--empty_string.sv
blob: 72035d9838a6e1b2a4c24e5dafc219028b6ea390 [
file
] [
log
] [
blame
]
/*
:name: empty_string
:description: empty string test
:should_fail: 0
:tags: 11.10.3
*/
module
top
();
bit
[
8
*
14
:
1
]
a
;
initial
begin
a
=
""
;
assert
(
a
==
0
);
end
endmodule