During such compound assignments, an implicit cast occurs, potentially resulting in lossy conversions.
Example:
long c = 1; c += 1.2;
After the quick-fix is applied:
long c = 1; c += (long) 1.2;
New in 2023.2