10 lines
186 B
Coq
10 lines
186 B
Coq
|
|
/*
|
||
|
|
* 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
|