Why is this an issue?

A constant value is truncated by an implicit conversion. It is likely an error that must be fixed.

How to fix it

Code examples

Noncompliant code example

module fly;
  logic [9:0] a = 9000;
endmodule

Compliant solution

module fly;
  logic [9:0] a = 900;
endmodule