Reports variable assignments that can be joined with the variable's declaration.
Example:
int x; x = 1;
The quick-fix converts the assignment to an initializer:
int x = 1;
New in 2018.3