Why is this an issue?

Unnamed instance ports should not be left unconnected.

How to fix it

Code examples

Noncompliant code example

module fly({a, b});
  input a, b;
endmodule

module top;
  fly fly1();
endmodule