Why is this an issue?

Empty statements should be removed.

How to fix it

Code examples

Noncompliant code example

module fly;
  initial begin
    ;
  end
endmodule

Compliant solution

module fly;
  initial begin
  end
endmodule