Why is this an issue?

A variable should be assigned a value before being used.

How to fix it

Code examples

Noncompliant code example

module fly;
  int i;
  int j = i;
endmodule

Compliant solution

module fly;
  int i = 1;
  int j = i;
endmodule