blob: 3c34790957275cb14faded5710485ca9322c6e5d [file] [log] [blame]
module test (
input i,
output o
);
wire w1;
wire w2;
assign w1 = ~i;
assign w2 = w1;
assign o = ~w2;
endmodule