Why is this an issue?

A net that is never used should be removed.

How to fix it

Code examples

Noncompliant code example

module fly;
  wire dream; // Noncompliant: 'dream' is never set nor read
  wire sleep; // Noncompliant: 'sleep' is set but never read
  assign sleep = 1;
endmodule