blob: 43132065a9138e4efb09ae28af1920412a59f52b [file] [log] [blame]
module top(b,c);
input b;
output c;
assign c = b;
endmodule