Why is this an issue?

Unused type parameters should be removed.

How to fix it

Code examples

Noncompliant code example

module fly #(parameter type t = int); // Noncompliant: 't' is never used
endmodule

Compliant solution

module fly #(parameter type t = int);
  t dream;
endmodule