Why is this an issue?

A module, interface, or program definition that is unused in the design should be removed.

How to fix it

Code examples

Noncompliant code example

module fly; // Noncompliant: 'fly' is not used
endmodule

module top;
endmodule