Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
e911119afa19222dc9bbad9ba934f3d965e34302
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.10.3--empty_string.sv
blob: 0f66eb1bba2b53a94b9f86212e695de26f1c11ba [
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