Why is this an issue?

A net is used but never has a value driven.

How to fix it

Code examples

Noncompliant code example

module fly(output x);
  wire w; // Noncompliant
  assign x = w;
endmodule