Why is this an issue?

A conditional statement or loop with empty body is likely a missing implementation.

How to fix it

Code examples

Noncompliant code example

module fly;
  initial begin
    if (1); begin // Noncompliant
    end
  end
endmodule