Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
8bea0781c44e5ebbeab5135503fd4ff8b9daec3b
/
.
/
SVIncCompil
/
Testcases
/
Icarus
/
ivltests
/
pr509.v
blob: 7c9f52aba2da49521ce4c437760d3e5dba933692 [
file
]
/*
* Make sure the degenerate case that a wire is linked to itself
* is handled properly.
*/
module
example
;
wire w
;
assign w
=
w
;
initial $display
(
"PASSED"
);
endmodule