An implicit conversion in an expression truncating a type, potentially loses data.
Carefully review this implicit conversion and add an explicit cast if it is intentional to silence the issue.
int a; logic [1:0] b = a;
int a; logic [1:0] b = logic [1:0]'(a);