Instance ports with no default value should not be left unconnected.
module fly(input int i); endmodule module top; fly fly1(); endmodule
module fly(input int i = 1); endmodule module top; fly fly1(); endmodule