Why is this an issue?

An output port that is never given a value should be removed.

How to fix it

Code examples

Noncompliant code example

module fly(
  input x,
  output y // Noncompliant: Output port 'y' is never given a value
);
endmodule