blob: 72d6c9c2270d594375674e2f538556dfaca814cc [file] [log] [blame]
module inst(a,b);
output b;
input a;
assign b = ~a;
endmodule
module top(a,b);
input a;
output b;
inst inst(
.a(a),
.b(1'b1)
);
endmodule