Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
814005c7f4161304c40c477989b71304364afefe
/
.
/
SVIncCompil
/
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